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

	menu = new Menu();

	menu.addItem("homeid", "Home", null,  "http://mmrc.caltech.edu/libby/research/index.html",
null);
	menu.addItem("contactid", "Contact Info",
null,"http://mmrc.caltech.edu/libby/research/contact.html", null);
	menu.addItem("resumeid", "Resume", null,
"http://mmrc.caltech.edu/libby/research/Elizabeth_I_Mayo.pdf", null);
	menu.addItem("currentid", "Current Research", null,
"http://mmrc.caltech.edu/libby/research/current/current.html", null);
	menu.addItem("previousid", "Previous Research", null,
"http://mmrc.caltech.edu/libby/research/previous/previous.html", null);
	menu.addItem("techwriting", "Technical Writing", null,
"http://mmrc.caltech.edu/libby/research/MSWord/wordtips.html", null);
	menu.addItem("publistid", "Publication List", null,
"http://mmrc.caltech.edu/libby/research/publist/publist.html", null);
	menu.addItem("caltechid", "Caltech", null,
"http://www.caltech.edu", null);


	menu.showMenu();
}
