// The following variables setup the dropdown caption, logo, and signup page

	var caption=" ChristSpace "
	var signup="forums.keenspace.com/viewtopic.php?t=38769"
	var logo="alphamole.keenspace.com/images/christspace.png"

// 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://alphamole.keenspace.com","TANDU!")
	comic1 = new Array("http://test.keenspace.com","The Testbed Room")
	comic2 = new Array("http://bluelite.keenspace.com/","Blue Lite")
	comic3 = new Array("http://nobleflower.keenspace.com","Noble Flower")
	comic4 = new Array("http://pillarsoffaith.keenspace.com","Pillars of Faith")
      comic5 = new Array("http://mcity.keenspace.com","mlleniumCity")
// This should be the number of comics on your list.
comictotal=6

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
}

// Randomize the array
var i,r,tmp;
for (i=0; i<(comictotal-1); i++)
{
	r=Math.round(Math.random(comictotal-i))+i
	temp = randarray[r]
	randarray[r] = randarray[i]
	randarray[i] = temp;
}

//There's no need for the table when it's already imbedded in another. JF, 3FEB2001.
//document.write('<FORM><TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR ALIGN=TOP><TD ALIGN="CENTER"><FORM>');
document.write('<FORM><CENTER><A HREF="http://',signup,'"><IMG SRC="http://',logo,'" border=0></a><BR>');
//document.write('<TR><TD ALIGN="center"><SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');
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>')

