
function compruebaBoletin() {
	
	var colorFondoError = "#FFFF00";
	var Nombre       = document.formBoletin.Nombre.value;
	var lNombre      = Nombre.length;
    var Email        = document.formBoletin.Email.value;
    var lEmail       = Email.length; 
	var ok = true;
    var cnt = 0;
	
	if (Nombre=="nombre"){
		alert ("Debe introducir un nombre v\álido");
      	document.getElementById('Nombre').style.backgroundColor = colorFondoError;
		return false;
	}
	
	if (lNombre==0){
		alert ("Debe introducir el nombre");
      	document.getElementById('Nombre').style.backgroundColor = colorFondoError;
		return false;
	} else {
		document.getElementById('Nombre').style.backgroundColor = '';
    }
	
	if (Email=="correo"){
		alert ("Debe introducir un correo electr\ónico v\álido");
      	document.getElementById('Email').style.backgroundColor = colorFondoError;
		return false;
	}
	
	if (lEmail==0){
		alert ("Debe introducir un correo electr\ónico");
		document.getElementById('Email').style.backgroundColor = colorFondoError;
		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 = colorFondoError;
				return false;
			}
		} 
	}

    if (!cnt){
       alert ("¡Direcci\ón de correo electr\ónico Inv\álida!");
	   document.getElementById('Email').style.backgroundColor = colorFondoError;
       return false;
    } else {
		document.getElementById('Email').style.backgroundColor = '';
	}

	return true;
}

function ValidaDatos(){
     var Nombre       = document.formContactar.Ctnombre.value;
     var lNombre      = Nombre.length;
     var Email        = document.formContactar.Ctmail.value;
     var lEmail       = Email.length;    
	 var Consulta     = document.formContactar.Ctconsulta.value;
     var lConsulta    = Consulta.length;
     var ok = true;
     var cnt = 0;

     if (lNombre==0){
		alert ("Debe introducir el nombre");
      	document.getElementById('Ctnombre').style.backgroundColor = '#ffff00';
		return false;
	 } else {
		 	document.getElementById('Ctnombre').style.backgroundColor = '';
     }
     if (lEmail==0){
		alert ("Debe introducir un correo electr\ónico");
		document.getElementById('Ctmail').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('Ctmail').style.backgroundColor = '';
			} else{
				alert ("¡Direcci\ón de correo electr\ónico Inv\álida!");
				document.getElementById('Ctmail').style.backgroundColor = '#ffff00';
				return false;
			}
		} 
	}

    if (!cnt){
       alert ("¡Direcci\ón de correo electr\ónico Inv\álida!");
	   document.getElementById('Ctmail').style.backgroundColor = '#ffff00';
       return false;
    } else {
		document.getElementById('Ctmail').style.backgroundColor = '';
	}
	 
	 
	if (lConsulta==0){
		alert ("Debe introducir una consulta v\álida.");
		document.getElementById('Ctconsulta').style.backgroundColor = '#ffff00';
		return false;
	}

	return true;
}

function muestraTextoBotones(texto) {
	if (document.layers){
		document.layers.textoBotones.document.write(texto);
		document.layers.textoIdiomas.document.close();
	}else if (document.all) {
		textoBotones.innerHTML=texto;
	}else if (document.getElementById) {
		document.getElementById("textoBotones").innerHTML=texto;
	} 
}
