<!--
 function comprobaCampo(campo) { 
 	if(campo.value=="") { 
  	campo.value=campo.defaultValue; 
 	}
}
 function borraCampo(campo) { 
	if (campo.value==campo.defaultValue) { 
  		campo.value=""; 
	} 
} 
function MuestraTexto(texto) {
		if (document.layers){
			document.layers.textoIconos.document.write(texto);
			document.layers.textoIconos.document.close();
		}else if (document.all) {
			textoIconos.innerHTML=texto;
		}else if (document.getElementById) {
			document.getElementById("textoIconos").innerHTML=texto;
		} 
}

function ValidaDatos(){
     var Nombre       = document.formContactar.nombre.value;
     var lNombre      = Nombre.length;
	 var Localidad       = document.formContactar.localidad.value;
     var lLocalidad      = Localidad.length;
	 var Asunto       = document.formContactar.asunto.value;
     var lAsunto      = Asunto.length;
     var Email        = document.formContactar.email.value;
     var lEmail       = Email.length;    
	 var Consulta     = document.formContactar.comentarios.value;
     var lConsulta    = Consulta.length;
     var ok = true;
     var cnt = 0;

     if (lNombre==0){
		alert ("Debe introducir el nombre");
      	document.getElementById('nombre').style.backgroundColor = '#ffff00';
		return false;
	 } else {
		 	document.getElementById('nombre').style.backgroundColor = '';
     }
	 
	 if (lLocalidad==0){
		alert ("Debe introducir la localidad");
      	document.getElementById('localidad').style.backgroundColor = '#ffff00';
		return false;
	 } else {
		 	document.getElementById('localidad').style.backgroundColor = '';
     }
	 
	 
	 if (lAsunto==0){
		alert ("Debe introducir el Asunto");
      	document.getElementById('asunto').style.backgroundColor = '#ffff00';
		return false;
	 } else {
		 	document.getElementById('asunto').style.backgroundColor = '';
     }
	 
     if (lEmail==0){
		alert ("Debe introducir un correo electr\ónico");
		document.getElementById('email').style.backgroundColor = '#ffff00';
		return false;
     }

    for (var i=0; i<lEmail; i++){
       var oneChar = Email.charAt(i);
       if (oneChar == '@'){
			if (cnt == 0){
				cnt++;
				document.getElementById('email').style.backgroundColor = '';
			} else{
				alert ("¡Direcci\ón de correo electr\ónico Inv\álida!");
				document.getElementById('email').style.backgroundColor = '#ffff00';
				return false;
			}
		} 
	}

    if (!cnt){
       alert ("¡Direcci\ón de correo electr\ónico Inv\álida!");
	   document.getElementById('email').style.backgroundColor = '#ffff00';
       return false;
    } else {
		document.getElementById('email').style.backgroundColor = '';
	}
	 
	 
	if (lConsulta==0){
		alert ("Debe introducir una consulta v\álida.");
		document.getElementById('comentarios').style.backgroundColor = '#ffff00';
		return false;
	}

	return true;
}



function show(id) {
var d = document.getElementById('smenu'+id);
	//alert(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
	if (d) {
		d.style.display='block';
	}
}
 //-->
