function terms_and_conditions(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=no,menubar=0,resizable=no,width=720,height=600,left = 10,top = 80');");
}


function validar_fechas(freserva)
{
	if ((document.freserva.txt_ingreso.value == "") || (document.freserva.txt_ingreso.value== "DD/MM/YYYY")){
	showDialog('Confirmaci&oacute;n','Enter Check-In *','prompt',2);
	return false;
	}
	if ((document.freserva.txt_salida.value == "") || (document.freserva.txt_salida.value== "DD/MM/YYYY")){
	showDialog('Confirmaci&oacute;n','Enter Check-Out *','prompt',2);
	return false;
	}	
	document.freserva.submit() 
}
function validar_fechas_esp(freserva)
{
	if ((document.freserva.txt_ingreso.value == "") || (document.freserva.txt_ingreso.value== "DD/MM/YYYY")){
	showDialog('Confirmaci&oacute;n','Ingrese Fecha de Llegada *','prompt',2);
	return false;
	}
	if ((document.freserva.txt_salida.value == "") || (document.freserva.txt_salida.value== "DD/MM/YYYY")){
	showDialog('Confirmaci&oacute;n','Ingrese Fecha de Salida *','prompt',2);
	return false;
	}	
	document.freserva.submit() 
}
