//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://pillarsoffaith.comicgenesis.com/deadspace.html"><IMG SRC="http://pillarsoffaith.comicgenesis.com/images/deadspace.gif"></A>');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="">Deadspace Dropdown<\/OPTION>');document.write('<OPTION VALUE="">-----<\/OPTION>');document.write('<OPTION VALUE="http://pillarsoffaith.comicgenesis.com/">Pillars of Faith<\/OPTION>');document.write('<OPTION VALUE="http://holdingchaos.comicgenesis.com/">Holding Chaos<\/OPTION>');document.write('<OPTION VALUE="http://www.antibunny.com/">Antibunny<\/OPTION>');document.write('<OPTION VALUE="http://dungeondamage.comicgenesis.com/">Dungeon Damage<\/OPTION>');document.write('<OPTION VALUE="http://www.undeadfriend.com/">Undead Friend<\/OPTION>');document.write('<OPTION VALUE="http://goodnevil.comicgenesis.com/">Beyond Good-N-Evil<\/OPTION>');document.write('<OPTION VALUE="http://www.cutethulhu.com/">CuteThulhu<\/OPTION>');document.write('<OPTION VALUE="http://thatguy.comicgenesis.com/">ThatGuy<\/OPTION>');document.write('<OPTION VALUE="http://zombination.comicgenesis.com/">Zombination<\/OPTION>');document.write('<OPTION VALUE="">------<\/OPTION>');document.write('<OPTION VALUE="http://jessica.comicgenesis.com">Jessica<\/OPTION>');document.write('<OPTION VALUE="http://Zina.comicgenesis.com">Elements Song<\/OPTION>');document.write('<OPTION VALUE="http://arf.comicgenesis.com">On the Other Side<\/OPTION>');document.write('<OPTION VALUE="http://bobned.comicgenesis.com">Bob N Ed<\/OPTION>');document.write('<OPTION VALUE="http://kuria.comicgenesis.com">Kuria<\/OPTION>');document.write('<OPTION VALUE="http://issa.comicgenesis.com">Issa<\/OPTION>');document.write('<OPTION VALUE="http://spiderfrogballoon.comicgenesis.com">SpiderFrogBalloon<\/OPTION>');document.write('<OPTION VALUE="http://negamiix.com/infinitus/">Infinitus<\/OPTION>');document.write('<OPTION VALUE="http://delphiessential.comicgenesis.com">Amaranthine Universe<\/OPTION>');document.write('<OPTION VALUE="">------<\/OPTION>');document.write('<OPTION VALUE="http://pillarsoffaith.comicgenesis.com/deadspace.html">JOIN DEADSPACE<\/OPTION>');document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');