// Esta funcion valida solo para el grupo de ficheros de Reservas del Hotel San Carlos :)

function fValidarContacto(){
    var txt = "Error en los siguientes campos: \n\n";
	msg_f = txt.length;


if (document.ValidarContacto.Nombre.value == "Ponga aquí su nombre")
	{
	 document.ValidarContacto.Nombre.style.backgroundColor = "#F4F4F4"
	 txt+="\tNombre\n";
	}

if (document.ValidarContacto.Mail.value == "Aquí su mail")
	{
	 document.ValidarContacto.Mail.style.backgroundColor = "#F4F4F4"
	 txt+="\tAñada su mail\n";
	}

if (document.ValidarContacto.Telefono.value == "Su teléfono")
	{
	 document.ValidarContacto.Telefono.style.backgroundColor = "#F4F4F4"
	 txt+="\tSu teléfono\n";
	}



if (msg_f != txt.length){
	alert(txt);
	return false;
	}else{
		return true;
	}
}




function TestMail(texto)
{
  var correcto=true;
  if ((texto.indexOf("@")<1) || (texto.indexOf("@")>20))
    { correcto=false; }
  if ( (texto.indexOf(".com")<0) &&  (texto.indexOf(".do")<0) && (texto.indexOf(".cu")<0) && (texto.indexOf(".cl")<0) && (texto.indexOf(".br")<0) && (texto.indexOf(".ch")<0) && (texto.indexOf(".pt")<0) && (texto.indexOf(".it")<0) && (texto.indexOf(".uk")<0) && (texto.indexOf(".mx")<0) && (texto.indexOf(".ar")<0) && (texto.indexOf(".de")<0) && (texto.indexOf(".fr")<0) && (texto.indexOf(".biz")<0) && (texto.indexOf(".info")<0) && (texto.indexOf(".net")<0) && (texto.indexOf(".es")<0)  && (texto.indexOf(".org")<0) &&  (texto.indexOf(".edu")<0) )
    { correcto=false; }
  
return correcto;
}


