//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://www.brickcomicnetwork.com/forum/viewtopic.php?f=11&t=9"><IMG SRC="http://www.brickcomicnetwork.com/dropdown/BCN.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 

//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="">Brick Comic Network<\/OPTION>');
document.write('<OPTION VALUE="">-----<\/OPTION>');

document.write('<OPTION VALUE="http://www.brickcomicnetwork.com/">BCN Homepage<\/OPTION>');
document.write('<OPTION VALUE="http://www.legostargalactica.net">Legostar Galactica<\/OPTION>');
document.write('<OPTION VALUE="http://www.irregularwebcomic.net/">Irregular Webcomic!<\/OPTION>');
document.write('<OPTION VALUE="http://www.lq-comic.com/home.html">Brickworld Saga<\/OPTION>');
document.write('<OPTION VALUE="http://ianthealy.comicgenesis.com/">Adventures of S-Team<\/OPTION>');
document.write('<OPTION VALUE="http://www.reasonablyclever.com/bh">Reasonably Clever<\/OPTION>');
document.write('<OPTION VALUE="http://planescapecomic.com/harrypotter">Harry Potter Comics<\/OPTION>');
document.write('<OPTION VALUE="http://www.tranquilitybasecomic.co.uk/">Tranquility Base<\/OPTION>');
document.write('<OPTION VALUE="http://www.tabletownonline.com">Tabletown Online<\/OPTION>');
document.write('<OPTION VALUE="http://www.dreamersink.com">Genuine Draft<\/OPTION>');
document.write('<OPTION VALUE="http://glomshire.thecomicseries.com/">Glomshire Knights<\/OPTION>');
document.write('<OPTION VALUE="http://majestic7.comicgenesis.com/">Majestic7<\/OPTION>');
document.write('<OPTION VALUE="http://www.legoville.co.uk/">Legoville<\/OPTION>');
document.write('<OPTION VALUE="http://blocktales.webcomicplanet.com/">Block Tales<\/OPTION>');


document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>'); 
