<!--
/********************************************************
 * SCRIPT NAME:  menu.js				*
 * PURPOSE:      JAVASCRIPT FUNCTIONS FOR DISPLAYING	*
 *               MENUS FROM THE TOOLBAR			*
 * AUTHOR:       ANTHONY SURALTA			*
 * CREATED:      APRIL 6, 2000				*
 ********************************************************/


var ToolBar_Supported = ToolBar_Supported;
if (ToolBar_Supported != null && ToolBar_Supported == true)
{
	// TO TURN [on/off] FRAME SUPPORT, SET Frame_Supported = [true/false]
	Frame_Supported = false;

	// SET THE MENU COLORS [bgColor, fontColor, mouseoverColor]
	//setDefaultMenuColor("#6699CC", "white", "red");
	setDefaultMenuColor("#000099", "white", "red");

	// SET THE TOOLBAR BACKGROUND COLOR
	setToolbarBGColor("white");

	// ***** ADD MENUS HERE *****
	// ABOUT US
	addPgMenu("AboutUs", "About Us", "","AboutUs.html");
	addPgSubMenu("AboutUs","Who We Are","AboutUs.html#Who");
	addPgSubMenu("AboutUs","Our History","AboutUs.html#History");
	addPgSubMenu("AboutUs","Objectives","AboutUs.html#Objectives");
	addPgSubMenu("AboutUs","General Focus","AboutUs.html#Focus");
	addPgSubMenu("AboutUs","Activities","AboutUs.html#Activities");
	addPgSubMenuLine("AboutUs")
	addPgSubMenu("AboutUs","The Organization","AboutUs.html#Organization");
	addPgSubMenu("AboutUs","Membership Fees","AboutUs.html#History");
	addPgSubMenu("AboutUs","Code Of Ethics","AboutUs.html#CodeOfEthics");
	addPgSubMenu("AboutUs","Marketing And Promotion","AboutUs.html#Marketing");
	addPgSubMenu("AboutUs","Presentations","AboutUs.html#Presentation");
	addPgSubMenu("AboutUs","Picture Gallery","PicGallery.html");
	
	// TECHNOLOGY UPDATE
	addPgMenu("Techology", "Technology Update", "","TechnologyUpdate.html");
	addPgSubMenu("Techology","Induction Of Officers","TechnologyUpdate.html#Induction");
	addPgSubMenu("Techology","Official Logo","TechnologyUpdate.html#OfficialLogo");
	addPgSubMenu("Techology","OOP Lecture","TechnologyUpdate.html#OOProgramming");
	addPgSubMenu("Techology","Filnet Official Name","TechnologyUpdate.html#NameOfficial");
 

	// NEWS AND EVENTS
	addPgMenu("News", "News &amp; Events", "","NewsEvents.html");
	addPgSubMenu("News","Induction Night","NewsEvents.html#Induction");
	addPgSubMenu("News","OOP Lecture","NewsEvents.html#Lecture");
	addPgSubMenu("News","General Meeting","NewsEvents.html#Meeting");
	addPgSubMenu("News","Technical Presentations","NewsEvents.html#Presentation");
	
	// CAREER TIPS
	addPgMenu("Career", "Career Tips", "","CareerTips.html");
	addPgSubMenu("Career","Enhancing Your Career","CareerTips.html#CareerTips");
	addPgSubMenu("Career","Interview Tips","CareerTips.html#InterviewTips");

	// MEMBERS
	addPgMenu("Members", "Members", "","Members.html");
	addPgSubMenu("Members","Board Of Directors","Members.html#Directors");
	addPgSubMenu("Members","Overall Member List","Members.html#Overall");
	addPgSubMenu("Members","Members In Good Standing","Members.html#Good");

	// CODE OF ETHICS
	addPgMenu("Ethics", "Code Of Ethics", "","CodeOfEthics.html");
	addPgSubMenu("Ethics","Filnet Code of Ethics","CodeOfEthics.html#1. Filnet Code Of Ethics");
	addPgSubMenu("Ethics","Earning Trust and Respect","CodeOfEthics.html#2. Earning Trust and Respect");
	addPgSubMenu("Ethics","Having Fun","CodeOfEthics.html#8. Having Fun");
	addPgSubMenu("Ethics","Freedom of Expression","CodeOfEthics.html#3. Ensuring Freedom of Expression");
	addPgSubMenu("Ethics","Personal Financial Gain","CodeOfEthics.html#4. Personal Financial Gain");
	addPgSubMenu("Ethics","Confidentiality","CodeOfEthics.html#5. Confidentiality of Information");
	addPgSubMenu("Ethics","Personal &amp; Career Devl","CodeOfEthics.html#6. Personal and Career Development");
	addPgSubMenu("Ethics","Promoting Filipino Culture","CodeOfEthics.html#9. Promoting the Filipino Culture");
	addPgSubMenu("Ethics","Official FilNet Function","CodeOfEthics.html#7. What is an Official FilNet Function");

	// HOME
	addPgMenu("Home", "filnet.bc.ca Home", "","index.html");
	addPgSubMenu("Home","filnet.bc.ca","index.html");
}

//-->