// INICIAN FUNCIONES DEL MENU//
var tiempoabierto;

function ShowMenu() {
	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('m1');
	var PosisionDiv = document.getElementById('MenuH');
	
	MenuDiv.style.left = PosisionDiv.offsetLeft + 135;
	MenuDiv.style.top = PosisionDiv.offsetTop + 22;
	
	if (tiempoabierto != "") { window.clearTimeout(tiempoabierto); }
	document.getElementById('m1').style.display = "inline";
};

function CerrarMenus(NoMen) {
	document.getElementById('m1').style.display = "none";
};

function CerrarMenu() {
	tiempoabierto = window.setTimeout(CerrarMenus, 500);
};

function mantenerMenu() {
	if (tiempoabierto != "") { window.clearTimeout(tiempoabierto); }
}

function menuOnColores(mMenu,MenuAnchor) {
	mMenu.bgColor="#34689A";
	document.getElementById(MenuAnchor).style.color="#FFFFFF";
	mMenu.style.cursor='hand'
}

function menuOffColores(mMenu,MenuAnchor) {
	mMenu.bgColor="#FFFFFF";
	document.getElementById(MenuAnchor).style.color="#003399";
}

// FINALIZAN FUNCIONES DEL MENU DE DESTINOS//
