//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://randf.topcities.com/baka/"><img src="http://img.photobucket.com/albums/v427/Sword_Chan/baka0.gif" alt="Image hosted by Photobucket.com" 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="http://randf.topcities.com/baka/">comics with baka-ness<\/OPTION>');
document.write('<OPTION VALUE="http://randf.topcities.com/baka/">-----<\/OPTION>');


document.write('<OPTION VALUE="http://the13labour.keenspace.com/">13th Labour<\/OPTION>');
document.write('<OPTION VALUE="http://dive.keenspace.com/">DIVE<\/OPTION>');
document.write('<OPTION VALUE="http://mahosignature.keenspace.com/">Paymon<\/OPTION>');
document.write('<OPTION VALUE="http://prilianlegends.keenspace.com/">Prilian Legends<\/OPTION>');
document.write('<OPTION VALUE="http://reflectionsofimmortality.keenspace.com/">Reflections of Immortality<\/OPTION>');
document.write('<OPTION VALUE="http://spirat.keenspace.com/">Spirat<\/OPTION>');
document.write('<OPTION VALUE="http://streak.keenspace.com/">Streak<\/OPTION>');


document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');