//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><TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD align="center"><FORM><A HREF="http://forums.keenspace.com/viewtopic.php?t=44235"><IMG SRC="http://explosivenstuff.keenspace.com/images/gothikeen1.jpg" border=0 alt="click here to sign up">');
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="">Gothikeen Dropdown<\/OPTION>');
document.write('<OPTION VALUE="">-----<\/OPTION>');

document.write('<OPTION VALUE="http://biggirlsdontcry.no-ip.com/">Big Girls Don\'t Cry<\/OPTION>');
document.write('<OPTION VALUE="http://blazearmada.keenspace.com/">Blaze Armada<\/OPTION>');
document.write('<OPTION VALUE="http://boymeetsboy.keenspace.com/">Boy Meets Boy<\/OPTION>');
document.write('<OPTION VALUE="http://explosivenstuff.keenspace.com/">Explosive and Stuff<\/OPTION>');
document.write('<OPTION VALUE="http://gothcamp.keenspace.com/">Goth Camp<\/OPTION>');
document.write('<OPTION VALUE="http://locker.transparint.org/">Locker 80<\/OPTION>');
document.write('<OPTION VALUE="http://lacunae.keenspace.com/">Lacunae<\/OPTION>');
document.write('<OPTION VALUE="http://thewhiner.odd-house.com/">Nobody Loves the Whiner<\/OPTION>');
document.write('<OPTION VALUE="http://gothicaznmafia.keenspace.com/">Once Upon a Nightmare<\/OPTION>');
document.write('<OPTION VALUE="http://tashasworld.keenspace.com/">Tasha\'s World<\/OPTION>');
document.write('<OPTION VALUE="http://theelven.com/">The Elven<\/OPTION>');

document.write('<OPTION VALUE="">------<\/OPTION>');
document.write('<OPTION VALUE="http://taiwanimation.keenspace.com/newkeendd.html">Dropdown Dropdown <\/OPTION>');
document.write('<OPTION VALUE="http://gear.keenspace.com/dropdowns.html">Dropdown Directory<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');
 
