function ValidarContacto()
{
	if (document.contacto.apellidos.value == "" ){
   		alert("Por favor, indica tus apellidos");
    		return 0;
	}
	else if (document.contacto.nombre.value == "" ){
   		alert("Por favor, indica tu nombre");
    		return 0;
	}
	else if (document.contacto.email.value == "" ){
   		alert("Por favor, indica tu email correctamente");
    		return 0;
	}
	else if (document.contacto.any.value=="0")  {
		alert("Por favor indica tu fecha de nacimiento");
		return 0;
	}
	/*
    	else if (document.contacto.sexo.value){
   		alert("Por favor, indica tu si eres Hombre o Mujer");
    		return 0; }
    	*/
	else if (!CyJS_Utils_IsEmailValid(document.contacto.email.value)){
		alert("El formato del email no es correcto");
		return 0;
	}
	else if (document.contacto.legal.checked == false) {
		alert("Para suscribirte es necesario haber leido y aceptado las Condiciones y Política de privacidad");
		return 0;
	}
	document.contacto.submit();
}

function CyJS_Utils_IsEmailValid(checkThisEmail)	{
	var myEMailIsValid = true;
	var myAtSymbolAt = checkThisEmail.indexOf('@');
	var myLastDotAt = checkThisEmail.lastIndexOf('.');
	var mySpaceAt = checkThisEmail.indexOf(' ');
	var myLength = checkThisEmail.length;

	if (myAtSymbolAt < 1 )
	{myEMailIsValid = false}

	if (myLastDotAt < myAtSymbolAt)
	{myEMailIsValid = false}

	if (myLength - myLastDotAt <= 2)
	{myEMailIsValid = false}

	if (mySpaceAt != -1)
	{myEMailIsValid = false}

	return myEMailIsValid
}