/* Para el formulario de contacto*/

function aceptar_contacto() {
	if (esBlanco(document.getElementById('contacto').email.value))
	{
		alert('Recuerde indicarnos su correo para contactar con usted.');
		document.getElementById('contacto').email.focus ();
	}
	else
	{
		if (!esEmail(document.getElementById('contacto').email.value))
		{
			alert('Debe introducir un e-mail válido.');
			document.getElementById('contacto').email.focus ();
		}
		else
		{
		//alert("Su correo ha sido enviado correctamente.\n\n Gracias por su colaboración ..");
		if (document.getElementById('contacto').consiente.checked)
			{
			document.getElementById('contacto').consiente.value="S";
			}
		document.getElementById('contacto').action="envio_formu.asp";
		document.getElementById('contacto').submit();
		}
	}	
}

/* JS para el formulario de contacto comercial */

function valida_comercial(){
	if (esBlanco(document.getElementById('form_contacto').empresa.value)) 
	{
		alert('Debe introducir el nombre de su Óptica.');
		document.getElementById('form_contacto').empresa.focus ();
		return false;
	}

	if (esBlanco(document.getElementById('form_contacto').email.value)) 
	{
		alert('Recuerde indicarnos su email para contactar con usted.');
		document.getElementById('form_contacto').email.focus ();
		return false;
	}

	if (!esEmail(document.getElementById('form_contacto').email.value)) 
	{
		alert('Debe introducir un e-mail válido.');
		document.getElementById('form_contacto').email.focus ();
		return false;
	}
	
	if (!esNumerico(document.getElementById('form_contacto').telefono.value)) 
	{
		alert('Debe indicarnos su teléfono.');
		document.getElementById('form_contacto').telefono.focus ();
		return false;
	}
return true;
}

function contacto_comercial(p) {
		if (valida_comercial()){ 
		document.getElementById('form_contacto').action="envio_comercial.asp?correo="+p;
		document.getElementById('form_contacto').submit();
		}
}
/* fin */

