//lines starting with two slashes are comments/instructions
//Keenspace dropdown developed by Steve Tonks, modified for educational use by Scott Maddix
// Web Site: gear.keenspace.com
//This code is freely distributable but is prohibited from being resold for profit
//DO NOT CHANGE LINES UNLESS INSTRUCTED

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://www.keenspace.com/forums/Forum158/HTML/000068.html">');
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 backslach "\" to keep it from interfering with the script
//add new lines as needed, based on these

document.write('<OPTION VALUE="">NardManga<\/OPTION>');
document.write('<OPTION VALUE="">-----------------------------<\/OPTION>');
document.write('<OPTION VALUE="/d/20030428.html">[85-100] NardManga: Death and Rebirth<\/OPTION>');
document.write('<OPTION VALUE="/d/20030425.html">[84] NardManga\'s Guide - 05<\/OPTION>');
document.write('<OPTION VALUE="/d/20030421.html">[83] NardManga\'s Guide - 04<\/OPTION>');
document.write('<OPTION VALUE="/d/20030328.html">[76-82] Presto Chango<\/OPTION>');
document.write('<OPTION VALUE="/d/20030324.html">[75] Extensive Swearing<\/OPTION>');
document.write('<OPTION VALUE="/d/20030321.html">[74] True Story<\/OPTION>');
document.write('<OPTION VALUE="/d/20030317,thml">[73] The downfalls of peeping #2<\/OPTION>');
document.write('<OPTION VALUE="/d/20030314.html">[72] NardManga\'s Guide - 3<\/OPTION>');
document.write('<OPTION VALUE="/d/20030310.html">[71] Your mom! OOHHH! BURN!<\/OPTION>');
document.write('<OPTION VALUE="/d/20030307.html">[70] NardManga\'s Guide - 2<\/OPTION>');
document.write('<OPTION VALUE="/d/20030303.html">[69] NardManga\'s Guide - 1<\/OPTION>');
document.write('<OPTION VALUE="/d/20030203.html">[57-68] Star Wars: Episode Infinty<\/OPTION>');
document.write('<OPTION VALUE="/d/20030131.html">[56] Overused Joke<\/OPTION>');
document.write('<OPTION VALUE="/d/20030127.html">[55] Bar Talk<\/OPTION>');
document.write('<OPTION VALUE="/d/20030124.html">[54] Super Saiyan<\/OPTION>');
document.write('<OPTION VALUE="/d/20030122.html">[GS] Guest Comic by Tom Anthony<\/OPTION>');
document.write('<OPTION VALUE="/d/20030120.html">[53] Watch What You Say<\/OPTION>');
document.write('<OPTION VALUE="/d/20021231.html">[GS] Guest Comic by Seignuer Ruei<\/OPTION>');
document.write('<OPTION VALUE="/d/20021227.html">[44-52] Slayers Nard: Part II<\/OPTION>');
document.write('<OPTION VALUE="/d/20021213.html">[32-43] NardManga Christmas Bonanza<\/OPTION>');
document.write('<OPTION VALUE="/d/20021129.html">[25-31] Slayers Nard: Part I<\/OPTION>');
document.write('<OPTION VALUE="/d/20021125.html">[24] Wandering Female Character<\/OPTION>');
document.write('<OPTION VALUE="/d/20021122.html">[23] Porn Star Scott<\/OPTION>');
document.write('<OPTION VALUE="/d/20021118.html">[22] Still Blowing People Up<\/OPTION>');
document.write('<OPTION VALUE="/d/20021111.html">[S] Remembrance Day<\/OPTION>');
document.write('<OPTION VALUE="/d/20021031.html">[S] Halloween<\/OPTION>');
document.write('<OPTION VALUE="/d/20021025.html">[16-21] Attack of the Space Yams<\/OPTION>');
document.write('<OPTION VALUE="/d/20021021.html">[15] Geoff Dresses Up<\/OPTION>');
document.write('<OPTION VALUE="/d/20021018.html">[14] Poor, confused Scott ...<\/OPTION>');
document.write('<OPTION VALUE="/d/20021014.html">[13] Aimless Beer Drinking<\/OPTION>');
document.write('<OPTION VALUE="/d/20021011.html">[12] Never Trust a Cannibal<\/OPTION>');
document.write('<OPTION VALUE="/d/20021009.html">[GS] Guest Comic Number 2 by Ace Pilot<\/OPTION>');
document.write('<OPTION VALUE="/d/20021007.html">[11] The downfall of peeping<\/OPTION>');
document.write('<OPTION VALUE="/d/20021004.html">[10] Dreams are okay ...<\/OPTION>');
document.write('<OPTION VALUE="/d/20020930.html">[9] Sheath, eh?<\/OPTION>');
document.write('<OPTION VALUE="/d/20020927.html">[8] Damn Public Washrooms!<\/OPTION>');
document.write('<OPTION VALUE="/d/20020923.html">[7] Accursed Cellphones ...<\/OPTION>');
document.write('<OPTION VALUE="/d/20020920.html">[6] God I love that Commercial<\/OPTION>');
document.write('<OPTION VALUE="/d/20020916.html">[5] Write something already!<\/OPTION>');
document.write('<OPTION VALUE="/d/20020913.html">[4] The Lord of Darkness<\/OPTION>');
document.write('<OPTION VALUE="/d/20020911.html">[GS] Guest Comic by Ace Pilot<\/OPTION>');
document.write('<OPTION VALUE="/d/20020909.html">[3] Swear Fest<\/OPTION>');
document.write('<OPTION VALUE="/d/20020906.html">[2] Post Math Test<\/OPTION>');
document.write('<OPTION VALUE="/d/20020902.html">[1] Molotov Man<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');
   