
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homepageid", "Home", "Home",  null, null);
	menu.addItem("hottopicsid", "Hot Topics", "Hot Topics",  null, null);
	menu.addItem("systemstatusid", "System Status", "System Status",  null, null);
	menu.addItem("pdeid", "PDE Data", "PDE Data",  null, null);
	menu.addItem("ndcid", "NDC", "NDC", null, null);
	menu.addItem("editsid", "Edits", "Edits", null, null);
	menu.addItem("reportsid", "Reports", "Reports", null, null);
	menu.addItem("usergroupid", "User Group/Training", "User Group/Training",  null, null);
	menu.addItem("referencesid", "References", "References",  null, null);
	menu.addItem("faqsid", "FAQs", "FAQs", null, null);
	//menu.addItem("sitemapid", "Site Map", "Site Map", null, null);
	//menu.addItem("searchid", "Site Search", "Site Search", null, null);
	menu.addItem("otherlinksid", "Other Links", "Other Links", null, null);
	
	
	menu.addSubItem("homepageid", "Go to Home ", "Go to Home ", "http://www.csscoperations.com/index.html");
	//menu.addSubItem("homepageid", "Go to RAPS Menu", "Go to RAPS Menu", "http://www.csscoperations.com/new/pdic/raps-menupopup.htm");
	menu.addSubItem("homepageid", "End of Menu", "End of Menu", null, null);
	
	
	menu.addSubItem("hottopicsid", "Go to Hot Topics ", "Go to Hot Topics ", "http://www.csscoperations.com/new/pdic/combo-hottopic/hottopics.html");
	menu.addSubItem("hottopicsid", "End of Menu", "End of Menu", null, null);
	
	
	menu.addSubItem("systemstatusid", "Check System Status", "Check System Status",  "http://www.csscoperations.com/new/systemstatus/systemstatus.html");
	menu.addSubItem("systemstatusid", "End of Menu", "End of Menu", null, null);

	
	menu.addSubItem("pdeid", "Register for Email Notifications", "Register for Email Notifications",  "http://www.csscoperations.com/new/registration_home_pdic.htm");
	menu.addSubItem("pdeid", "Enroll to Submit PDD", "Enroll to Submit PDD",  "http://www.csscoperations.com/new/pdic/pde/enroll_submit_pdd.html");
	menu.addSubItem("pdeid", "Drug Data Processing System (DDPS)", "Drug Data Processing System (DDPS)",  "http://www.csscoperations.com/new/pdic/pde/ddps.html");
	menu.addSubItem("pdeid", "Prescription Drug Front-End System (PDFS)", "Prescription Drug Front-End System (PDFS)",  "http://www.csscoperations.com/new/pdic/pde/pdfs.html");
	menu.addSubItem("pdeid", "End of Menu", "End of Menu", null, null);

	menu.addSubItem("ndcid", "Go to NDC", "Go to Edits", "http://www.csscoperations.com/new/pdic/ndc/ndc.html");
	menu.addSubItem("ndcid", "End of Menu", "End of Menu", null, null);


	menu.addSubItem("editsid", "Go to Edits", "Go to Edits", "http://www.csscoperations.com/new/pdic/edits/edits.html");
	menu.addSubItem("editsid", "End of Menu", "End of Menu", null, null);	
	
	
	menu.addSubItem("reportsid", "Go to Report Layouts", "Go to Reports", "http://www.csscoperations.com/new/pdic/reports/report-layouts.html");
	menu.addSubItem("reportsid", "Go to PRS Reports Information", "Go to Reports", "http://www.csscoperations.com/new/pdic/reports/prs-reports.html");
	menu.addSubItem("reportsid", "End of Menu", "End of Menu", null, null);
		
		
	menu.addSubItem("usergroupid", "User Group Information", "User Group Information",  "http://www.csscoperations.com/new/pdic/pdd-usergroup/pdd-usergroup.html");
	menu.addSubItem("usergroupid", "Training", "Training",  "http://www.csscoperations.com/new/pdic/pdd-training/pdd-training.html");
	menu.addSubItem("usergroupid", "End of Menu", "End of Menu",  null, null);


	menu.addSubItem("referencesid", "Official Links", "Official Links",  "http://www.csscoperations.com/new/pdic/pdd-references/pdd-officiallinks.html");
	menu.addSubItem("referencesid", "CMS Instructions", "CMS Instructions",  "http://www.csscoperations.com/new/pdic/pdd-references/pdd-cmsinstructions.html");
    //menu.addSubItem("referencesid", "Other References", "Other References",  "http://www.csscoperations.com/new/pdic/pdd-references/other-pdd-refs.html");
	menu.addSubItem("referencesid", "End of Menu", "End of Menu", null, null);	

			
	menu.addSubItem("faqsid", "Go to PDE Data FAQs", "Go to PDE Data FAQs", "http://www.csscoperations.com/new/pdic/faqs/pdicfaqs.html");
	menu.addSubItem("faqsid", "End of Menu", "End of Menu", null, null);
	
	
	//menu.addSubItem("sitemapid", "Go to Site Map", "Site Map", "http://www.csscoperations.com/new/pdic/sitemap/combo-sitemap.html");
	//menu.addSubItem("sitemapid", "End of Menu", "End of Menu", null, null);
	
	//Created an Other Links menu selection that includes the site map, search and archives links within the top menu (012908).
	
	menu.addSubItem("otherlinksid", "Archives", "Archives", "http://www.csscoperations.com/new/pdic/archives.html");		
	menu.addSubItem("otherlinksid", "Site Map", "Site Map", "http://www.csscoperations.com/new/pdic/sitemap/combo-sitemap.html");
	menu.addSubItem("otherlinksid", "Search", "Site Search", "http://www.csscoperations.com/new/search.html");
	menu.addSubItem("otherlinksid", "End of Menu", "End of Menu", null, null);
	
	
	
	menu.showMenu();
}