// The following variables setup the dropdown caption, logo, and signup page

var caption="Uni"
var signup="wscholars.keenspace.com/dropdown.htm"
var logo="gear.keenspace.com/images/scripts/unikeen.gif"

// Add your comics here, use this as a guide:
// comicX=new Array("url","name of comic")
//    Replace X with the next number
//    Replace url with the address of the comic
//    Replace the name with the name of the comic

comic0 = new Array("http://blottostreet.keenspace.com","Blotto Street")
comic1 = new Array("http://bluecanary.keenspace.com","Blue Canary")
comic2 = new Array("http://brainfries.keenspace.com","Brainfries")
comic3 = new Array("http://campuslife.keenspace.com","Campus Life")
comic4 = new Array("http://closetoddity.keenspace.com", "Closet Oddity")
comic5 = new Array("http://www.crfh.net","CRFH!!!")
comic6 = new Array("http://darksneakers.keenspace.com/","Dark Sneakers")
comic7 = new Array("http://ecj.keenspace.com","Eternal Caffeine Junkie")
comic8 = new Array("http://fogclub.keenspace.com","F.O.G. Club")
comic9 = new Array("http://fletcherscave.keenspace.com","Fletcher\'s Cave")
comic10 = new Array("http://forsooth.keenspace.com","Forsooth!")
comic11 = new Array("http://holeinthewall.keenspace.com","Hole in the Wall")
comic12 = new Array("http://byjim.keenspace.com","Jim, Comics by")
comic13 = new Array("http://lit.keenspace.com","Lost In Translation")
comic14 = new Array("http://lowerplace.keenspace.com","Lower Place")
comic15 = new Array("http://themasks.keenspace.com","Masks, The")
comic16 = new Array("http://morons.keenspace.com","M.O.R.O.N.S.")
comic17 = new Array("http://mt.keenspace.com","Mortigi Tempo")
comic18 = new Array("http://msmatchers.keenspace.com","MsMatchers")
comic19 = new Array("http://osakajournals.keenspace.com","Osaka Journals")
comic20 = new Array("http://ourhouse.keenspace.com","Our House")
comic21 = new Array("http://scatterplot.keenspace.com","Scatterplot")
comic22 = new Array("http://schooldaze.keenspace.com","School Daze")
comic23 = new Array("http://smapdi.keenspace.com","Smapdi")
comic24 = new Array("http://surrealu.keenspace.com","Surreal U")
comic25 = new Array("http://www.stankywater.com", "Stanky Water")
comic26 = new Array("http://umlauthouse.keenspace.com","Umlaut House")
comic27 = new Array("http://untitledagain.keenspace.com","Untitled Again")
comic28 = new Array("http://wscholars.keenspace.com","Weishaupt Scholars")


// This should be the number of comics on your list.
comictotal=29


function goto_URL(object)
{
 window.location.href=object.options[object.selectedIndex].value;
}

// Create an array equal to the number of comics
var randarray=new Array()
for (i=0; i<comictotal; i++)
{
 randarray[i]=i
}

document.write('<FORM><CENTER><A HREF="http://',signup,'"><IMG SRC="http://',logo,'" border=0></a><BR>');
document.write('<SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');
document.write('<OPTION VALUE="" SELECTED>Select a ',caption,' strip!<\/OPTION>');

for (var i=0; i<(comictotal); i++)
{
 showcomic=eval("comic"+randarray[i])
 document.write('<OPTION VALUE="',showcomic[0],'">',showcomic[1],'<\/OPTION>');
}


document.write('<\/SELECT><\/CENTER><\/FORM>')
