function checkEmail(inputvalue) {	
		    var pattern=/^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\.([a-zA-Z])+([a-zA-Z])+/;
		    if(pattern.test(inputvalue)){         
				return true; 
		    }else{   
				return false; 
		    }
}

function validar() {
	var ok = "Por favor, complete todos los campos.";
	
	var nombre = document.frmCONSULTA.nombre.value.replace(/^\s*|\s*$/g,"");
	var email = document.frmCONSULTA.email.value.replace(/^\s*|\s*$/g,"");
	var telefono = document.frmCONSULTA.telefono.value.replace(/^\s*|\s*$/g,"");
	var pregunta = document.frmCONSULTA.pregunta.value.replace(/^\s*|\s*$/g,"");
	
	if ( (nombre != "") && (email != "") && (telefono != "") && (pregunta != "") )
		ok = "";
		
	if (ok == "")
		if (!checkEmail(email))
			ok = "Por favor, introduzca un email v\u00e1lido.";
	
	return ok;
}
