// JavaScript Document

function checkFields() {
missinginfo = "";

if (document.form.nombres.value == "")
 { missinginfo += "\n     -  Name and Lastname";}

if (document.form.pais.selectedIndex==0)
 { missinginfo += "\n     -  Country";}

if (document.form.telefono.value == "")
 { missinginfo += "\n     -  Phone";} 

if ((document.form.mail.value == "") || (document.form.mail.value.indexOf('@') == -1) || (document.form.mail.value.indexOf('.') == -1)) 
{ missinginfo += "\n     -  E-mail";}

if (document.form.cmb_dia_ing.selectedIndex==0)
 { missinginfo += "\n     -  Check-in Day";}
 
if (document.form.cmb_mes_ing.selectedIndex==0)
 { missinginfo += "\n     -  Check-in Month";}
 
if (document.form.cmb_ano_ing.selectedIndex==0)
 { missinginfo += "\n     -  Check-in Year";} 
 
if (document.form.cmb_dia_sal.selectedIndex==0)
 { missinginfo += "\n     -  Check-out Day";}
 
if (document.form.cmb_mes_sal.selectedIndex==0)
 { missinginfo += "\n     -  Check-out Month";}
 
if (document.form.cmb_ano_sal.selectedIndex==0)
 { missinginfo += "\n     -  Check-out Year";}  
 
// radio button seleccionado
    var radioCheck = false;
    for (i = 0; i < document.form.room.length; i++) {
	if (document.form.room[i].checked)
	
    radioCheck = true; }
    if (!radioCheck) {
//    theMessage = theMessage + "\n --> Choose your gender";
		{ missinginfo += "\n     -  Room";} 
    }
	
if (document.form.cmb_dia_arr.selectedIndex==0)
 { missinginfo += "\n     -  Check-in Hour";}
 
if (document.form.cmb_min_arr.selectedIndex==0)
 { missinginfo += "\n     -  Check-in Minute";}
 
if (document.form.cmb_tur_arr.selectedIndex==0)
 { missinginfo += "\n     -  Check-in Type";}
 	

if (missinginfo != "") 

{ 

missinginfo ="_________________________________________\n" +

"You should fill these field from the form:\n" +

missinginfo +

"\n_________________________________________" +
"\n Please try again";


alert(missinginfo);

return false;

}else{

return true;

}
}
