function doEditMenu(message){
		var content="<h1>Edit Menu</h1>";
		content += "<p><button onclick=\"doEditDirections();\">Edit Directions</button></p>";
		content += "<p><button onclick=\"doEditPortals();\">Edit Portals</button></p>";
		content += "<p><button onclick=\"doEditItems();\">Edit Items</button></p>";
		content += "<p><button onclick=\"doEditLocks();\">Edit Locks</button></p>";
		content += "<p><button onclick=\"doEditTraps();\">Edit Traps</button></p>";
		content += "<p><button onclick=\"doEditMonsters();\">Edit Monsters</button></p>";
		content += "<p><button onclick=\"doEditEpilogues();\">Edit Epilogues</button></p>";
		content += "<p><button onclick=\"doEditRooms();\">Edit Rooms</button></p>";
		content += "<p><button onclick=\"doMainMenu();\">Main Menu</button></p>";
		if(message!=null){
			content += "<p>"+message+"</p>";
		}
		gameContentDiv.innerHTML=content;		
}