<!-- Minus AutoDato -->
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);


	menu = new Menu();
	
	menu.addItem("homeid", "Home", "Home", null, null);
	menu.addItem("Linksid", "Roleplaying", "Links", null, null);
	menu.addItem("DnDid", "D&D", "D&D",  null, null);
	menu.addItem("GURPSid", "GURPS", "GURPS",  null, null);
	menu.addItem("Rolemasterid", "Rolemaster", "Rolemaster", null, null);						
	menu.addSubItem("homeid", "Home", "Home", "index.html");
	menu.addSubItem("homeid", "Peters Roleplaying Page", "Peters Roleplaying Page", "i_index.html");
	menu.addSubItem("homeid", "Clara Louise", "Clara Louise", "http://www.brodt.dk/clara/index.html"); 	
	menu.addSubItem("homeid", "Peter in GURPS terms", "Peter Brodt in GURPS terms", "g_megur.html");	

	menu.addSubItem("GURPSid", "Download", "Predain: Downloads ", "g_dwnl.html");	
	menu.addSubItem("GURPSid", "Tips and tricks", "GURPS tips and tricks", "t_gurps.html");	
	menu.addSubItem("GURPSid", "Adventure 1", "Predain Adventure: The Tarresque", "g_adv01.html");	
	menu.addSubItem("GURPSid", "Adventure 2", "Adventure: The Equinox Dragon", "g_adv02.html");	
	menu.addSubItem("GURPSid", "Adventure 3", "Predain Adventure: Flying Mountains", "g_adv03.html");	
	menu.addSubItem("GURPSid", "Adventure 4", "Predain Adventure: Little Halfling Thieves", "g_adv04.html");	
	menu.addSubItem("GURPSid", "..Introduction", "Predain: Introduction for new players", "g_intro.html");	
	menu.addSubItem("GURPSid", "..Character Creation", "Predain: Character Creation", "g_charc.pdf");	
	menu.addSubItem("GURPSid", "..Combat", "Predain: Combat and Stuff", "g_comba.pdf");	
	menu.addSubItem("GURPSid", "..Creatures", "Predain: Creatures", "g_creat.html");	
	menu.addSubItem("GURPSid", "..Gamemasters", "Predain: Gamemasters Notes", "g_gamem.html");	
	menu.addSubItem("GURPSid", "..Gazetteer", "Predain: Gazetteer", "g_gazet.html");	
	menu.addSubItem("GURPSid", "..House Rules", "Predain: House rules", "g_house.pdf");	
	menu.addSubItem("GURPSid", "..Magic", "Predain: Magic", "g_magic.pdf");	
	menu.addSubItem("GURPSid", "..New Spells", "Predain: New and modified spells", "g_spells.pdf");	
	menu.addSubItem("GURPSid", "..NPCs", "Predain: NPCs - friends and foes", "g_npc.pdf");	
	menu.addSubItem("GURPSid", "Pickpocket list", "Pickpocket list", "g_pick.html");	
	menu.addSubItem("GURPSid", "Kromm Rulings", "Kromm rulings", "http://mywebpages.comcast.net/tfoster118/KrommComm.html");	

	menu.addSubItem("Rolemasterid", "Download", "Rolemaster Downloads", "rm_main0.html");
	menu.addSubItem("Rolemasterid", "..Generator", "Rolemaster Character Generator", "rm_main1.html");
	menu.addSubItem("Rolemasterid", "..Optimizer", "Rolemaster Character Optimizer", "rm_main2.html");
	menu.addSubItem("Rolemasterid", "..Mover", "Rolemaster Character Mover Utility", "rm_main6.html");
	menu.addSubItem("Rolemasterid", "Tips and Tricks", "Rolemaster tips and tricks", "rm_main5.html");	

	menu.addSubItem("DnDid", "Download", "D&D downloads", "dnd_dwnl.html");
	menu.addSubItem("DnDid", "D&D Tips and tricks", "Tips and tricks for Dungeons and Dragons 3E character creation", "t_dnd.html");

	menu.addSubItem("Linksid", "d20 system rules", "d20 system reference rules v 3.5", "http://www.wizards.com/D20/article.asp?x=srd35");
	menu.addSubItem("Linksid", "Sneaky Rogue Tricks", "Sneaky Rogue Tricks", "http://www.sff.net/people/brooks-peck/sneaky.html");
	menu.addSubItem("Linksid", "Wizards of the Coast", "Wizards of the Coast", "http://www.wizards.com/dnd/main.asp?x=dnd/welcome,3");
	menu.addSubItem("Linksid", "Everchanging Book of Names", "Everchanging Book of Names", "http://www.worldzone.net/games/ebon/");
	menu.addSubItem("Linksid", "Map creation", "How to create fantasy maps", "maps.html");
	menu.addSubItem("Linksid", "..Drawing Mountains", "How to draw mountains", "mount.html");
	menu.addSubItem("Linksid", "Buddings RPG pages", "Budding Online", "http://home19.inet.tele.dk/budding/");
	menu.addSubItem("Linksid", "Hirvonens Spell Sheets", "Hirvonens D&D 3rd edition Spell Sheets", "http://www.geocities.com/toytools/dnd");
	menu.addSubItem("Linksid", "Emas Character sheets", "Emas character sheets", "http://www.emass-web.com/");
	menu.addSubItem("Linksid", "Novacanes Reference sheets", "Novacanes Reference sheets", "http://members.rogers.com/wilson0246/DnD/");
	menu.showMenu();
}








