//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://sawdust.keenspace.com/keenatwork.html"><IMG SRC="http://sawdust.keenspace.com/images/keenatwork.gif" 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="">The Keen\@work Sites<\/OPTION>');
document.write('<OPTION VALUE="">-----<\/OPTION>');

document.write('<OPTION VALUE="http://abetterlifethanthis.keenspace.com">A Better Life Than This<\/OPTION>');
document.write('<OPTION VALUE="http://taiwanimation.keenspace.com/">City Slackers<\/OPTION>');
document.write('<OPTION VALUE="http://collegepros.keenspace.com/">College Pros<\/OPTION>');
document.write('<OPTION VALUE="http://cortland.keenspace.com/">Cortland<\/OPTION>');
document.write('<OPTION VALUE="http://decypher.keenspace.com/">Decypher<\/OPTION>');
document.write('<OPTION VALUE="http://fiddlybits.keenspace.com/">Fiddly Bits<\/OPTION>');
document.write('<OPTION VALUE="http://gameshow.keenspace.com/">Gameshow<\/OPTION>');
document.write('<OPTION VALUE="http://mcduffies.keenspace.com">mcDuffies<\/OPTION>');
document.write('<OPTION VALUE="http://mythocorp.keenspace.com">Mythocorp\, Intl\.<\/OPTION>');
document.write('<OPTION VALUE="http://onthejob.keenspace.com/">On the Job<\/OPTION>');
document.write('<OPTION VALUE="http://sandwichworld.keenspace.com/">Sandwich World<\/OPTION>');
document.write('<OPTION VALUE="http://sawdust.keenspace.com/">Sawdust<\/OPTION>');
document.write('<OPTION VALUE="http://sparechange.keenspace.com/">Spare Change<\/OPTION>');
document.write('<OPTION VALUE="http://webcomix.keenspace.com/">WEB\! Comix<\/OPTION>');

document.write('<OPTION VALUE="">------<\/OPTION>');
document.write('<OPTION VALUE="http://gear.keenspace.com/dropdowns.html">DROPDOWN DIRECTORY<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');