function checkMail (lang){
if (lang=="en"){	
		if (     document.signup.nome.value == "") {
		   window.alert("Please fill the \"NAME\" field")
		        document.signup.nome.focus();
		   return false;}   
		 if (     document.signup.cognome.value == "") {
		   window.alert("Please fill the \"SURNAME\" field")
		        document.signup.cognome.focus();
		   return false;}
		 if (     document.signup.telefono.value == "") {
		   window.alert("Please fill the \"PHONE\" field")
		        document.signup.telefono.focus();
		   return false;}
		 if (     document.signup.mail.value == "") {
		   window.alert("Please fill the \"E-MAIL\" field")
		        document.signup.mail.focus();
		   return false;}
	}else{
		if (     document.signup.nome.value == "") {
		   window.alert("Por favor compilar el campo\"Nombre\"")
		        document.signup.nome.focus();
		   return false;}   
		 if (     document.signup.cognome.value == "") {
		   window.alert("Por favor compilar el campo \"Apellido\"")
		        document.signup.cognome.focus();
		   return false;}
		 if (     document.signup.telefono.value == "") {
		   window.alert("Por favor compilar el campo \"Teléfono\"")
		        document.signup.telefono.focus();
		   return false;}
		 if (     document.signup.mail.value == "") {
		   window.alert("Por favor compilar el campo \"Correo\"")
		        document.signup.mail.focus();
		   return false;} 	
	}
}