
	var menuFlag = "";

	function ShowResortsMenu(str){
		var docobj;
		if (document.all) {
			docobj = eval("document.all."+str);
			docobj.style.visibility='visible';
		}
		else {
			document.getElementById(str).style.visibility='visible';
		}
	}

	function HideResortsMenu(str){
		var docobj;
		if (document.all) {
			docobj = eval("document.all."+str);
			docobj.style.visibility='hidden';
		}
		else {
			document.getElementById(str).style.visibility='hidden';
		}
	}

	function ShowMenu(str){
		var docobj;
		if (document.all) {
			docobj = eval("document.all."+str);
			docobj.style.visibility='visible';
		}
		else {
			document.getElementById(str).style.visibility='visible';
		}

	}

	function HideMenu(str){
		var docobj;
		if (document.all) {
			docobj = eval("document.all."+str);
			docobj.style.visibility='hidden';
		}
		else {
			document.getElementById(str).style.visibility='hidden';
		}

	}

	function ShowIslandsMenu() {
		if (document.all) {
			document.all.maps_submenu.style.display="block";
		}
		else {
			document.getElementById("maps_submenu").style.display="block";
		}
	}

	function HideIslandsMenu() {
		if (document.all) {
			document.all.maps_submenu.style.display="none";
		}
		else {
			document.getElementById("maps_submenu").style.display="none";
		}
	}

	function GoToIsland(obj) {
		var island = obj.selectedIndex;

		if (island == 1) {document.location.href="abacoresorts.shtml";}
		else if (island == 2){document.location.href="eleutheraresorts.shtml";}
		else if (island == 3) {document.location.href="grandbahamaresorts.shtml";}
		else if (island == 4){document.location.href="longislandresorts.shtml";}
		else if (island == 5) {document.location.href="harbourislandresorts.shtml";}
		else if (island == 6) {document.location.href="paradiseislandresorts.shtml";}
		else if (island == 7) {document.location.href="paradiseislandresorts.shtml";}
		else if (island == 8) {document.location.href="paradiseislandresorts.shtml";}
	}

	function GoToDestination(obj) {
		var destination = obj.value;
		var go = false;

		if (destination == "1") {document.form1.action="http://www.negrilonestop.com";go = true;}
		else if (destination == 2){document.form1.action="http://www.montegobayonestop.com/main.shtml";go = true;}
		else if (destination == 3) {document.form1.action="hhttp://www.ochoriosonestop.commain.shtml";go = true;}
		else if (destination == 4){document.form1.action="http://www.portantonio-onestop.com/main.shtml";go = true;}
		else if (destination == 5) {document.form1.action="http://www.treasurebeachonestop.com/main.shtml";go = true;}
		else if (destination == 6) {document.form1.action="http://www.stmartinonestop.com/main.shtml";go = true;}
		else if (destination == 7) {document.form1.action="http://www.bconestop.com/main.shtml";go = true;}
		else if (destination == 8) {document.form1.action="http://onestop.globtitleravel.com/cruises/default.aspx";go = true;}

		if (go) {
			document.form1.method="get";
			document.form1.target="_blank";
			document.form1.submit();
		}
	}


