//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://isahn.keenspace.com/keenheroines.htm"><IMG SRC="http://www.asarea.de/pictures/nightandday/keenheroines.jpg" 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 backslach "\" to keep it from interfering with the script
//add new lines as needed, based on these

document.write('<OPTION VALUE="">Select a KeenHeroines Strip!<\/OPTION>');
document.write('<OPTION VALUE="">-----<\/OPTION>');

document.write('<OPTION VALUE="http://isahn.keenspace.com/">Night & Day<\/OPTION>');
document.write('<OPTION VALUE="http://thejaded.keenspace.com">The Jaded<\/OPTION>');
document.write('<OPTION VALUE="http://femmefatale.keenspace.com/">Femme Fatale<\/OPTION>');
document.write('<OPTION VALUE="http://isukiyomi.keenspace.com">Michiko Monagatari<\/OPTION>');
document.write('<OPTION VALUE="http://mansionofe.keenspace.com">The Mansion of E<\/OPTION>');
document.write('<OPTION VALUE="http://gunsnstuff.keenspace.com">Swords are cool!<\/OPTION>');
document.write('<OPTION VALUE="http://hellsing.keenspace.com/">And Shine Heaven Now<\/OPTION>');
document.write('<OPTION VALUE="http://zeera.keenspace.com/">Zeera the Space Pirate<\/OPTION>');
document.write('<OPTION VALUE="http://mindmistress.keenspace.com/">MINDMISTRESS<\/OPTION>');
document.write('<OPTION VALUE="http://pimpette.keenspace.com">Pimpette & Associates<\/OPTION>');
document.write('<OPTION VALUE="http://mcduffies.keenspace.com">mcDuffies<\/OPTION>');
document.write('<OPTION VALUE="http://oosterwijk.keenspace.com/">Star Bored<\/OPTION>');
document.write('<OPTION VALUE="http://orion.keenspace.com">Beyond Reality<\/OPTION>');
document.write('<OPTION VALUE="http://shinegotower.keenspace.com/">Shine Get Dumplings Go-Go Tower!<\/OPTION>');
document.write('<OPTION VALUE="http://twicedestined.keenspace.com">Twice Destined<\/OPTION>');
document.write('<OPTION VALUE="http://magellan.keenspace.com">Magellan Justice Academy<\/OPTION>');
document.write('<OPTION VALUE="http://godoftarot.keenspace.com/">God of Tarot<\/OPTION>');
document.write('<OPTION VALUE="http://marianne.keenspace.com/">Pirate Queen Marianne<\/OPTION>');
document.write('<OPTION VALUE="http://thenoob.keenspace.com/">the noob<\/OPTION>');
document.write('<OPTION VALUE="http://godlike.keenspace.com/">GODLIKE<\/OPTION>');
document.write('<OPTION VALUE="http://nahast.keenspace.com/">Nahast - Lands of Strife<\/OPTION>');
document.write('<OPTION VALUE="http://freakofnature.keenspace.com/">The Blue Skunk<\/OPTION>');
document.write('<OPTION VALUE="http://glg.keenspace.com/">Green Light Go<\/OPTION>');
document.write('<OPTION VALUE="http://random.keenspace.com/">K.O.N.A.<\/OPTION>');
document.write('<OPTION VALUE="http://fate.keenspace.com/">Spinning Destiny<\/OPTION>');
document.write('<OPTION VALUE="http://retography.keenspace.com/">Awesomeness and a Slice of Cheese<\/OPTION>');
document.write('<OPTION VALUE="http://dasien.keenspace.com/">Dasien<\/OPTION>');

document.write('<OPTION VALUE="">------<\/OPTION>');
document.write('<OPTION VALUE="http://taiwanimation.keenspace.com/newkeendd.html">Other Dropdowns<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');
   