function goto_URL(object) {
    window.location.href = object.options[object.selectedIndex].value;
}


//IMG SRC URL should point to the absolute URL of the dropdown graphic
//The HREF tag should show where clicking on the image should take you, 
//usually to a sign-up spot

document.writeln('<FORM" SIZE="500"><TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD align="center"><FORM><A HREF="http://netrek.keenspace.com/gspace.htm"><IMG SRC="http://netrek.keenspace.com/images/gspace.jpg" ALT="NEOspace\!" border=0>');
document.writeln('<TR><TD align="center"><SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');

//If nothing is inside the quotes, the text is not a link
//If there is a meta-character included in the name, precede the character 
//with a backslash "\" to keep it from interfering with the script
//add new lines as needed, based on these

document.write('<OPTION VALUE="">NEOhio Comics<\/OPTION>');
document.write('<OPTION VALUE="">------------------------<\/OPTION>');

document.write('<OPTION VALUE="http://breakpointcity.keenspace.com">Breakpoint City<\/OPTION>');
document.write('<OPTION VALUE="http://torio.keenspace.com/classact/caindex.htm">Class Act<\/OPTION>');
document.write('<OPTION VALUE="http://www.angelfire.com/comics/fflegacy">FF Legacy<\/OPTION>');
document.write('<OPTION VALUE="http://idget.keenspace.com">Idget<\/OPTION>');
document.write('<OPTION VALUE="http://netrek.keenspace.com/">NeTrek<\/OPTION>');
document.write('<OPTION VALUE="http://terraventure.keenspace.com">Terra Venture<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');