function mipop(url,width,heigh,nm) {
	if (width =="") width=620;
	if (heigh =="") heigh=460;
	if (nm =="") nm = "ventana";
	var mipop = window.open(url,nm,"resizable=yes,scrollbars="+ scroll + ",width="+ width + ",height="+ heigh +",top=1,left=1")
	mipop.focus();
};

function Salto(MiCampo) {
	Val = MiCampo.value
	if (Val != "") { window.location.href = Val; }
}

// Menu
var tiempoabierto;
function ShowMenu(DivPos) {
	if ((navigator.appName != "Netscape")&&(navigator.appName != "Microsoft Internet Explorer")) {  return; }
	var BrouserVersion=parseFloat(navigator.appVersion.indexOf("MSIE")>0?navigator.appVersion.split(";")[1].substr(6):navigator.appVersion);
	if (BrouserVersion < 5) { return; }
		
	var MenuDiv = document.getElementById('MenuDest');
	var BgDiv = document.getElementById('MenuBack');
	
	DivPos.style.cursor="hand";
	//document.MD.src="../i-TravelSoft/menu_destinos_on.gif";
	MenuDiv.style.left = DivPos.offsetLeft;
	BgDiv.style.left = DivPos.offsetLeft - 10;

	if (tiempoabierto != "") { window.clearTimeout(tiempoabierto); }

	MenuDiv.style.display = "inline";
	BgDiv.style.display = "inline";
	
};

function CerrarMenus() {
	//document.MD.src="../i-TravelSoft/menu_destinos.gif";
	document.getElementById('MenuDest').style.display = "none";
	document.getElementById('MenuBack').style.display = "none";
};

function CerrarMenu() {
	tiempoabierto = window.setTimeout(CerrarMenus, 500);
};

function mantenerMenu() {
	if (tiempoabierto != "") { window.clearTimeout(tiempoabierto); }
}

//Fin menu de dest

