<!--
function validarFormulario(){
var res=true;
var cNumero  = "1234567890"
var cLetras  = "abcdefghijklmnñopqrstuvwxyzABCDEFGHIJKLMNÑOPQRSTUVWXYZáéíóúÁÉÍÓÚ"
var cEspacio = " "
var cPunto   = "." 
var cUnder   = "_"
var cGuion   = "-"
var csimbolos= "-/*-+:.,!¿?¡@\);(¡"
var  cb=false;
var colBg="#FEF9B1";
 /* Color que se mustra como fondo del imput cunado hay un error	*/	
	res =  ValidateNonBlank(document.mailu.nombre.value,"Nombre");
//	alert ("uno="+res);
		if (res) {
			res =  ValidateNonBlank(document.mailu.mail.value,"E-mail");
			if (res) {
				res =  ValidateEmail(document.mailu.mail.value);
				 if (res) {
					res =  ValidateNonBlank(document.mailu.consulta.value,"Consulta");
					if (res) {
					//	alert("antes del submit= "+res);
					}
				}
			}
		}
	return res;
}
//-->

//-------------------------------------------------------------------------------//
//-------------------------------------------------------------------------------//
function ValidateNonBlank(theString, nameCampo){
	
	//var colBg="#efefef";
	var colBg="#FEF9B1";
	var colLin="#000000";
	var tipBord="1px solid";

	// colores por defecto
	var defcolBg="#ffffff";
	var defcolLin="#000000";
	var deftipBord="1px solid";  //tipos de bordes dotted, dashed, solid, double, groove, ridge, inset, outset//

 //alert ( document.getElementById("mail").style.border +"-- "+document.getElementById("mail").style.color+"..."+document.getElementById("mail").style.backgroundColor);


	if (theString == ""){
		alert("El campo '" + nameCampo + "' no puede ser vacío " + theString);
		if (nameCampo == "Nombre")
		{	document.mailu.nombre.focus();	
			//document.getElementById("nombre").style.border=tipBord; 
			document.getElementById("nombre").style.backgroundColor=colBg; 
			//document.getElementById("nombre").style.color=colLin; 
		}
		else
		{	//document.getElementById("nombre").style.border=deftipBord; 
			document.getElementById("nombre").style.backgroundColor=defcolBg; 
			//document.getElementById("nombre").style.color=defcolLin; 
		}
		if (nameCampo == "E-mail")
		{	document.mailu.mail.focus();		
			//document.getElementById("mail").style.border=tipBord; 
			document.getElementById("mail").style.backgroundColor=colBg; 
			//document.getElementById("mail").style.color=colLin; 
		}
		else
		{	//document.getElementById("mail").style.border=deftipBord; 
			document.getElementById("mail").style.backgroundColor=defcolBg; 
			//document.getElementById("mail").style.color=defcolLin; 


		}
		if (nameCampo == "Consulta") 
		{	document.mailu.consulta.focus();
			//document.getElementById("consulta").style.border=tipBord; 
			document.getElementById("consulta").style.backgroundColor=colBg; 
			//document.getElementById("consulta").style.color=colLin; 
		}
		else
		{	//document.getElementById("consulta").style.border=deftipBord; 
			document.getElementById("consulta").style.backgroundColor=defcolBg; 
			//document.getElementById("consulta").style.color=defcolLin; 
		}
		
		return false;
		
	}
	return true;
}


function ValidateEmail(theString){

	/*var colBg="#efefef";*/
	var colBg="#FEF9B1";
	var colLin="#000000";
	var tipBord="1px solid";
	var theLen=0;

	// colores por defecto
	var defcolBg="#ffffff";
	var defcolLin="#000000";
	var deftipBord="1px solid";  //tipos de bordes dotted, dashed, solid, double, groove, ridge, inset, outset//

	

	if (theString.indexOf("@",0) < 0 || theString.indexOf(".")<0){
		alert("El E-mail ingresado no es válido.");
		document.mailu.mail.focus();
		//document.getElementById("mail").style.border=tipBord; 
		document.getElementById("mail").style.backgroundColor=colBg; 
		//document.getElementById("mail").style.color=colLin; 


		// alert ( document.getElementById("mail").style.border +"-- "+document.getElementById("mail").style.color+"..."+document.getElementById("mail").style.backgroundColor);
		return false
	}
	//document.getElementById("mail").style.border=deftipBord; 
	document.getElementById("mail").style.backgroundColor=defcolBg; 
	//document.getElementById("mail").style.color=defcolLin; 
	return true;
}


