function ValEmail(){
	var strMail = FormSend.mail.value;
	var filter=/^[A-Za-z][A-Za-z0-9_]*@[A-Za-z0-9_]+\.[A-Za-z0-9_.]+[A-za-z]$/;
	if (strMail.length == 0 ){
	   return true;
	}
	if (filter.test(strMail)){
	   return true;
	}
	else{
	   alert("Debe ingresar una dirección de correo válida");
	   document.FormSend.mail.value='';
	   return false;
	}

}

function validar(){
	var strMsg = "";
	if (FormSend.nombre.value == ""){
	   strMsg += "\n - Nombre";
	   FormSend.nombre.focus();
	}
	if (FormSend.mail.value == ""){
	   strMsg += "\n - Direccion e-mail valida";
	   FormSend.mail.focus();
	}
	if (FormSend.asunto.value == ""){
	   strMsg += "\n - Asunto del mensaje";
	   FormSend.asunto.focus();
	}
	if (FormSend.mensaje.value == ""){
	   strMsg += "\n - Detalle del Mensaje";
	   FormSend.mensaje.focus();
	}
	if (strMsg != ""){
	   strMsg = "Primero Debe Ingresar."+strMsg;
	   alert (strMsg);
	   return (false);
	}
	else{
	   return (true);
	}
}

function foto(Cod){
	window.open("popup.php?pro="+Cod,"producto","toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,directories=no,status=no,width=650,height=580");
}

function loadpage(){
	document.getElementById('origtops334').style['display'] = 'none';
	self.focus();
}
