////////////////////////////////////////////
// 1st value: S (SubMenu)
// If S:
//      MenuName (assocoates submenu with menu -- "investors" in this case)
//		Caption (The text that appears in the menu
// 	    URL or function name to be called when menu is selected
// 	    Target - Blank - URL comes up in main window
// 	             Anything Else - URL comes up in a window with that name 		 
// 		Window Params - additional info (width, height, statusbar, etc.)
// 		
////////////////////////////////////////////
/*
Samples: 

	' Bring up a page in the main section

	addMenu("S","investors","The Chairman's Message","testdoc.html","","")

	' Bring up a page in a new window
	addMenu("S","investors","Review Liability Conreact","testdoc.html","_new","")

	' Bring up a page in a new window of a specific size
	addMenu("S","investors", "Privacy Policy","testdoc.html","privacy","width=400,height=600")

	' Call a Javascript function
	addMenu("S","investors", "Call a Function","javascript:doSomething('param1','param2')","","")

*/

	addMenu("S","investors", "Corporate Governance","phoenix.zhtml?c=105560&p=irol-govHighlights","","")
	addMenu("S","investors", "Press Releases","phoenix.zhtml?c=105560&p=irol-news&nyo=0","","")
	addMenu("S","investors", "Stock Information","phoenix.zhtml?c=105560&p=irol-stockQuote","","")
        addMenu("S","investors", "SEC Filings","phoenix.zhtml?c=105560&p=irol-sec","","")
	addMenu("S","investors", "Analyst Coverage","phoenix.zhtml?c=105560&p=irol-analysts","","")
	/* addMenu("S","investors", "Scientific Meetings","phoenix.zhtml?c=105560&p=irol-calendar","","") */
        addMenu("S","investors", "Annual Reports","phoenix.zhtml?c=105560&p=irol-reportsAnnual","","")
	addMenu("S","investors", "Investor Events","phoenix.zhtml?c=105560&p=irol-presentations","","")
	addMenu("S","investors", "Investor Kit","phoenix.zhtml?c=105560&p=irol-infoReq","","")
        addMenu("S","investors", "Contact Information","phoenix.zhtml?c=105560&p=irol-contact","","")
	addMenu("S","investors", "E-mail Alerts","phoenix.zhtml?c=105560&p=irol-alerts","","")
	addMenu("S","investors", "Investor FAQ","phoenix.zhtml?c=105560&p=irol-faq","","")

