
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("webmasterid", "Quick Links", "Quick Links", null, null);
	menu.addItem("newsid", "Accounting Operations", "Accounting Operations",  null, null);
	menu.addItem("freedownloadid", "Financial Reporting & Cost Accounting", "Financial Reporting & Cost Accounting",          null, null);
	menu.addItem("searchengineid", "Insurance & Risk Management", "Insurance & Risk Management",          "http://www.co.vt.edu/risk/index.html","_blank");
	menu.addItem("miscid", "Search", "Search",  "http://www.co.vt.edu/intranet/search.html", "_blank");

	menu.addSubItem("webmasterid", "Business Management Guide", "Business",  "http://www.co.vt.edu/dbmg/index.html",              "_blank");
	menu.addSubItem("webmasterid", "Forms & Templates", "Forms",  "http://www.co.vt.edu/forms/index.html", "_blank");
	menu.addSubItem("webmasterid", "Financial Procedures", "Financial",  "http://www.co.vt.edu/procedures/index.html",            "_blank");
	menu.addSubItem("webmasterid", "Training & Reference Manuals", "Training",                                                    "http://www.co.vt.edu/training/index.html", "_blank");
	menu.addSubItem("webmasterid", "Ledger", "Ledger",  "http://www.co.vt.edu/ledger", "_blank");
        menu.addSubItem("webmasterid", "Training Opportunities", "Training",                                          "http://training.vt.edu/index.php?list=dept&details=3&summary=on", "_blank");
        menu.addSubItem("webmasterid", "Financial Policies", "Financial Policies",  "http://www.policies.vt.edu", "_blank");
        menu.addSubItem("webmasterid", "Finance Web Reports", "Finance Web Reports",                          "https://ditto2.iwa.vt.edu/webreport/submit", "_blank");
        menu.addSubItem("webmasterid", "HR Payroll Web Reports", "HR Payroll Web Reports",                  "https://reporter.iwa.vt.edu/services/reports/hrwwwid.hrlib.entry", "_blank");
        menu.addSubItem("webmasterid", "Phone Numbers", "Phone",                                                  "http://www.co.vt.edu/directory.php", "_blank");

	menu.addSubItem("newsid", "Payroll", "Payroll",  "http://www.co.vt.edu/accounting_operations/payroll/index.html",         "_blank");
	menu.addSubItem("newsid", "General Accounting", "General Accounting",          "http://www.co.vt.edu/accounting_operations/payroll/index.html", "_blank");
	menu.addSubItem("newsid", "Accounting Services", "Accounting Services",          "http://www.co.vt.edu/accounting_operations/accounting_services/index.html", "_blank");


	menu.addSubItem("freedownloadid", "Fixed Assets", "Fixed Assets",          "http://www.co.vt.edu/financial_reporting/fixed_assets/index.html", "_blank");
	menu.addSubItem("freedownloadid", "Cost Accounting", "Cost Accounting",          "http://www.co.vt.edu/financial_reporting/cost_accounting/index.html", "_blank");
	menu.addSubItem("freedownloadid", "Financial Reporting", "Financial Reporting",          "http://www.co.vt.edu/financial_reporting/financial_reporting/index.html", "_blank");


	menu.showMenu();
}