//lines starting with two slashes are comments/instructions
//Keenspace dropdown developed by Steve Tonks, modified for educational use by Scott Maddix
// Web Site: gear.comicgenesis.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://forums.comicgenesis.com/viewtopic.php?t=57201"><IMG SRC="http://img.photobucket.com/albums/v427/Sword_Chan/nocturn.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="">Comics by artists who stay up late!<\/OPTION>');
document.write('<OPTION VALUE="">-----<\/OPTION>');


document.write('<OPTION VALUE="http://altdelusions.comicgenesis.com/">Alternate Delusions<\/OPTION>');
document.write('<OPTION VALUE="http://goodnevil.comicgenesis.com">Beyond Good-N-Evil<\/OPTION>');
document.write('<OPTION VALUE="http://www.cringecomics.com">Cringe Comics<\/OPTION>');

document.write('<OPTION VALUE="http://decypher.comicgenesis.com">Decypher<\/OPTION>');
document.write('<OPTION VALUE="http://drivethrublues.comicgenesis.com">Drive-thru Blues<\/OPTION>');

document.write('<OPTION VALUE="http://fletcherapts.comicgenesis.com">Fletcher Apts.<\/OPTION>');


document.write('<OPTION VALUE="http://insanityforthepoor.comicgenesis.com">Insanity for the Poor<\/OPTION>');

document.write('<OPTION VALUE="http://magicalartistpencil.comicgenesis.com">Magical Artist Pencil<\/OPTION>');
document.write('<OPTION VALUE="http://mcduffies.comicgenesis.com">mcDuffies<\/OPTION>');
document.write('<OPTION VALUE="http://isukiyomi.comicgenesis.com">Michiko Monagatari<\/OPTION>');

document.write('<OPTION VALUE="http://pimpette.comicgenesis.com">Pimpette & Associates<\/OPTION>');

document.write('<OPTION VALUE="http://qbc.comicgenesis.com">QueensBoy Chronicles<\/OPTION>');

document.write('<OPTION VALUE="http://sgsb.comicgenesis.com">Soulgrind Squeezebox<\/OPTION>');
document.write('<OPTION VALUE="http://streak.comicgenesis.com">Streak<\/OPTION>');
document.write('<OPTION VALUE="http://thethirteenthmonth.comicgenesis.com">The Thirteenth Month<\/OPTION>');

document.write('<OPTION VALUE="">-----<\/OPTION>');
document.write('<OPTION VALUE="http://decypher.comicgenesis.com/keendrop/">Dropdown Directory 3.0<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');
   
