	function Validar(id){
	  	if (document.forms[id].txt_Nombre.value == "")
	  	{ alert("Por favor ingrese su nombre"); document.forms[id].txt_Nombre.focus(); return; }
	
	  	if (document.forms[id].txt_Telefono.value == "")
	  	{ alert("Por favor ingrese su número de teléfono"); document.forms[id].txt_Telefono.focus(); return; }	
		
	  	if (document.forms[id].txt_Email.value == "")
	  	{ alert("Por favor ingrese su dirección de e-mail"); document.forms[id].txt_Email.focus(); return; }
	
		if (document.forms[id].txt_Email.value.indexOf('@', 0) == -1 ||
		  document.forms[id].txt_Email.value.indexOf('.', 0) == -1)
	  	{ alert("Dirección de e-mail inválida"); document.forms[id].txt_Email.focus(); return; }
	
	  	if (document.forms[id].txt_Pais.value == "")
	  	{ alert("Por favor ingrese su pais de origen"); document.forms[id].txt_Pais.focus(); return; }
	
	  	if (document.forms[id].txt_Consulta.value == "")
	  	{ alert("Por favor ingrese su consulta"); document.forms[id].txt_Consulta.focus(); return; }
	
	  	document.forms[id].submit();
	}


	function actualizaContador(obj) 
    {
        longitud=obj.value.length;
        if (longitud>2048) obj.value=obj.value.substr(0,2048);
        obj.form.contador.value=obj.value.length;
    }  
