<!--
// original code by Bill Trefzger 12/12/96
function go1(){
if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
		}
	}
//-->

document.write('<form name="selecter1"><select style="color:Gold; background-color: black; font: 0.9em Book Antiqua; margin-top: 0.15em;" name="select1" size=1 onchange="go1()">');
document.write('<option value=none>Select destination');
document.write('<option value=none>--------------------');
document.write('<option value="main.html">Main Page');
document.write('<option value="story.html">The Story So Far ...');
document.write('<option value="rules.html">Rules of Conduct');
document.write('<option value="faq.html">F.A.Q.');
document.write('<option value="http://www.neopangea.net/forum/phpBB3/index.php">NeoPangea Forum');
document.write('<option value="tools.html">Tools');
document.write('<option value="media.html">Multimedia Archive');
document.write('<option value="chat.php">NeoPangea Commons');
document.write('<option value="links.html">Points of Interest');
document.write('<option value="http://www.myspace.com/regina_haus">About the Storyteller');
document.write('</select>');
document.write('</form>');

