


function solicitarInfo()	{
var err=0;
	
	if($("email").value == "" || $("email").value == "nombre@empresa.com") {
	$("errCampos").style.display = "";
	$("email").className = "textBoxErr"

	err=1;
	
	} else {
		if(emailCheck($("email").value) == false)	{
		$("errCampos").style.display = "none";
		$("errCamposMail").style.display = "";
		$("email").className = "textBoxErr"
		err=1;
		
		} else {
			$("email").className = "textBox"
		}
	}
	
	if($("telefono").value == "" || $("telefono").value == "Telefono") {
	$("errCampos").style.display = "";
	$("telefono").className = "textBoxErr"
	//$("telefono").focus();
	err=1;
	} else {
		$("telefono").className = "textBox"
	}
	

	if($("nombre").value == "" || $("nombre").value == "Nombre Apellidos") {
	$("errCampos").style.display = "";
	$("nombre").className = "textBoxErr"
	err=1;
	} else {
			$("nombre").className = "textBox"
	}
	
	if (err!=1)	{
		$("enviar").disabled = true;
		$("divCargando").style.display = ""; //formularioEnviado()
	
	
		
	}
	
	if (err!=1)	{
		return true;
	} else {
		return false;
	}
	
	
}


function errorMSG()	{
	alert("Error de envio:"+id);
}

function formularioEnviado()	{
	//alert("listo");
	$("nombre").value = "";
	$("empresa").value = "";
	$("lada").value = "";
	$("telefono").value = "";
	$("email").value = "";
	$("producto").value = ""
	$("comentarios").value = "";
	//$("email").value = "";
	
	
	$("errCampos").style.display = "none";
	$("errCamposMail").style.display = "none";
	$("divCargando").style.display = "none";
	$("gracias").style.display = ""; 	
	$("forma").style.display = "none";
	
	$("nombre").disabled = true;
	$("empresa").disabled = true;
	$("telefono").disabled = true;
	$("email").disabled = true;
	$("comentarios").disabled = true; 
	$("producto").disabled = true;

}

<!-- Begin
function emailCheck(txt) {
//txt=document.isn.email.value;
if (txt.indexOf("@")<3){
	//alert("Lo siento, la cuenta de correo parece errónea. Por favor, "
	//+" comprueba el prefijo y el signo '@'.");
	return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)&&(txt.indexOf(".tv")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)&&(txt.indexOf(".gob")<5)
&&(txt.indexOf(".mil")<5)&&(txt.indexOf(".edu")<5)){
	//alert("Lo siento. Pero esa cuenta de correo parece errónea. Por favor,"
	//+" comprueba el sufijo (que debe incluir alguna terminación como: "
	//+".com, .edu, .net, .org, .gov o .mil)");
	return false;
   }
	//return alert("La dirección es (aparentemente) correcta");
return true;
}
// End -->

function abrirHelp()	{
	alert("Estamos mejorando el sistema de CHAT \nPronto lo tendremos en línea\n\nPuede ponerse en contacto con nostros al: \nTeléfono: (55)5233-6600\nEmail: ventas@abarden.com");
}

function borraCampo(valor) {
	if (valor == "nombre") {
		if($("nombre").value == "Nombre Apellidos" ) {
			$("nombre").value = "";
			$("nombre").className = "textBox";
			
		}
	}
	if (valor == "empresa") {
		if($("empresa").value == "Empresa SA de CV" ) {
			$("empresa").value = "";
			$("empresa").className = "textBox";
			
		}
	}
	
	if (valor == "lada") {
		if($("lada").value == "Area" ) {
			$("lada").value = "";
			$("lada").className = "textBox";
		}
	}
	
	if (valor == "telefono") {
		if($("telefono").value == "Telefono" ) {
			$("telefono").value = "";
			$("telefono").className = "textBox";
		}
	}
	
	if (valor == "email") {
		if($("email").value == "nombre@empresa.com" ) {
			$("email").value = "";
			$("email").className = "textBox";
			
		}
	}
	
	if (valor == "producto") {
		if($("producto").value == "Escriba algun servicio" ) {
			$("producto").value = "";
			$("producto").className = "textBox";
		}
	}

    if (valor == "comentarios") {
		if($("comentarios").value == "Escriba sus comentarios aqui." ) {
			$("comentarios").value = "";
			$("comentarios").className = "textBox";
			
		}
	}
}

function ponCampo(valor) {
	
	if (valor == "nombre") {
		if($("nombre").value == "" ) {

			$("nombre").className = "textBoxSombra";
			$("nombre").value = "Nombre Apellidos";
		}
	}
	if (valor == "empresa") {
		if($("empresa").value == "" ) {
			$("empresa").className = "textBoxSombra";
			$("empresa").value = "Empresa SA de CV";
		}
	}
	if (valor == "lada") {
		if($("lada").value == "" ) {
			$("lada").className = "textBoxSombra";
			$("lada").value = "Area";
		}
	}
	
	if (valor == "telefono") {
		if($("telefono").value == "" ) {
			$("telefono").className = "textBoxSombra";
			$("telefono").value = "Telefono";
		}
	}
	if (valor == "email") {
		if($("email").value == "" ) {
			$("email").className = "textBoxSombra";
			$("email").value = "nombre@empresa.com";
		}
	}
	if (valor == "producto") {
		if($("producto").value == "" ) {
			$("producto").className = "textBoxSombra";
			$("producto").value = "Escriba algun servicio";
		}
	}
	if (valor == "comentarios") {
		if($("comentarios").value == "" ) {
			$("comentarios").className = "textBoxSombra";
			$("comentarios").value = "Escriba sus comentarios aqui.";
		}
	}
}