function verDias(mes){
	procesar2('europa_opc_dias','mes='+mes,'comboDias');
}
function verPersonas(){
	fadul = document.getElementById("frmadul").value;
	fboy = document.getElementById("frmboy").value;
	procesar2('europa_opc_personas','adul='+fadul+'&boy='+fboy,'tablaPerso');
}
function verformu(tarea){
	if( tarea=="cerrar" ){
		document.getElementById("btnreserva").style.display = "block";
		document.getElementById("mapa").innerHTML = "";
	}else{
	document.getElementById("btnreserva").style.display = "none";
	procesar3("paquete_formu","tarea="+tarea+"&codigo=<?php print $dbOtro; ?>","mapa");
	}
}
function verformuSend(){
	jscontacto = trim(document.getElementById("frmcontacto").value);
	jspais = trim(document.getElementById("frmpais").value);
	jsciudad = trim(document.getElementById("frmciudad").value);
	jstelefono = trim(document.getElementById("frmtelefono").value);
	jsemail = trim(document.getElementById("frmemail").value);
	jspersonas = trim(document.getElementById("frmpersonas").value);
	jscomen = trim(document.getElementById("frmcomen").value);
	msn = "";
	
	if( jscontacto=="" ){ msn+= "- Faltan ingresar el Contacto.\n"; }
	if( jspais=="" ){ msn+= "- Faltan ingresar el Pais.\n"; }
	if( jsciudad=="" ){ msn+= "- Faltan ingresar la Ciudad.\n"; }
	if( jstelefono=="" ){ msn+= "- Faltan ingresar el Telefono con Codigo de Area.\n"; }
	msnemail = valEmail(jsemail,false);
	if( msnemail!="ok" ){ msn+= "- Email "+msnemail+".\n"; }
		
	if( msn=="" ){ window.document.form1.submit();
	}else{ alert(msn); }
}
