txtreserva='Numero de pasaporte';
txtemail='Escriba su e-mail';
function jreserva1(){
	tpasaporte=document.getElementById('txtnumpas');
	tpasaporte.style.color='black';
	if(tpasaporte.value==txtreserva){
		tpasaporte.value='';	
	}	
}
function jreserva2(){
	tpasaporte=document.getElementById('txtnumpas');
	if(tpasaporte.value==''){
		tpasaporte.value=txtreserva;
		tpasaporte.style.color='#999999';
	}
}
function jmail1(){
	temail=$('temail');
	temail.style.color='black';
	if(temail.value==txtemail){
		temail.value='';	
	}	
}
function jmail2(){
	temail=$('temail');
	if(temail.value==''){
		temail.value=txtemail;
		temail.style.color='#999999';
	}
}
function abrirtraducido(pag,ant,des){
window.location='../languaje.php?pagina='+pag+"&idiomaant="+ant+"&idiomades="+des;
}
function ereserva(){
	var imes=document.frmreservaciones.tmes.value;
	var icuarto=document.frmreservaciones.ttipo.value;
	if(imes<1){
		window.alert('Select a Month / Seleccione un Mes');
		return;
	}
	if(icuarto<1){
		window.alert('Select a room type / Seleccione un tipo de cuarto');
		return;
	}
	document.frmreservaciones.submit();
}
