

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);


	menu = new Menu();
menu.addItem("homeid", "Home", " Back To Home Page  ","index.shtml", null);
menu.addItem("webmasterid", "PR / Marketing |", "Pr / Marketing",null, null);
menu.addItem("newsid", "Internet Services |", "Internet Services",  null, null);
menu.addItem("freedownloadid", "Communications |", "Communications",  null, null);
menu.addItem("searchengineid", "Promo Merchandise |", "Promo Merchandise ",  null, null);
menu.addItem("linksid", "Client News |", "Client News",  null, null);
menu.addItem("contactid", "Coaching |", "Coaching",  null, null);




menu.addSubItem("webmasterid", "&nbsp;Public Relations Services ", " Public Relations Services",  "pr.shtml", "");
menu.addSubItem("webmasterid", "&nbsp;Marketing Services", " Marketing Services ",  "market.shtml", "");
menu.addSubItem("webmasterid", "&nbsp;Brochure Portfolio", " Brochure Portfolio ",  "flyer.shtml", "");
menu.addSubItem("webmasterid", "&nbsp;Info Packets", " Info Packets ",  "infopackets.shtml", "");
menu.addSubItem("newsid", "&nbsp;Web Development", "Web Development",  "webservices.shtml", "");
menu.addSubItem("freedownloadid", "&nbsp;Comm Planning", "Comm Planning ",  "commplan.shtml", "");
menu.addSubItem("freedownloadid", "&nbsp;Org. Communications", "Org. Communications ",  "prorg.shtml", "");
menu.addSubItem("freedownloadid", "&nbsp;Newsletters", " Newsletters",  "pubs.shtml", "");

menu.addSubItem("searchengineid", " &nbsp;Promo Campaigns", "Promo Campaigns ",  "promocampaign.shtml", "");
menu.addSubItem("searchengineid", " &nbsp;Premium Ideas", "Premium Ideas ",  "promo.shtml", "");


menu.addSubItem("linksid", "&nbsp;Client Profiles", "Client Profiles ",  "clients.shtml", "");


menu.addSubItem("contactid", "&nbsp;Dr Green Website", "Dr Green Website",  "http://www.kfspr.com/rhoda", "");


menu.showMenu();
}
