function showToolbar()
{
	menu = new Menu();

	mstyle = new MenuStyle();

	mstyle.idName = "SmartMenu";

	mstyle.idStyle = "horizontal";

	mstyle.position = "relative";	

	mstyle.bVisible = true;

	mstyle.cellSpacing = 0;

	mstyle.mainMenuWidth = "100%";

    mstyle.bgColor = "#000000";

    mstyle.fgColor = "#000000";

	menu.newMenu(mstyle);

	menu.addItem("SmartMenu", "idHome", 1, "Home", "Bay Vista  Home Page",  "en_index.htm", null, null, 0);

	menu.addItem("SmartMenu", "idLodge", 1, "Lodges & Cottages", "Bay Vista Lodges & Cottages",  "en_lodge.htm", null, null, 0);
		
	menu.addItem("SmartMenu", "idRates", 1, "Rates", "Bay Vista Rates",  "en_rates.htm", null, null, 0);

	//menu.addItem("SmartMenu", "idAboutUs", 1, "About Us", "About Bay Vista", "en_aboutus.htm", null, null, 0);

	menu.addItem("SmartMenu", "idContactUs", 1, "Contact Us", "Contact Bay Vista", "en_contactus.htm", null, null, 0);
	
	showMenu();

}





function showForNetscape(){



printItem("Home", "http://blizzard.com/index.htm");

printItem("Clients", "");

printItem("Partners", "");

printItem("Support", "");

printItem("About Us", "");

printItem("Contact Us", "");

}



function printItem (name, address){

	document.write (' | <a href="' + address + '">' + name + '</a>');
}