// Keenspace Neatherworld




// 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://schoolspirit.comicgenesis.com/","School Spirit")			// spiritcomic @ yahoo.com.au
	comic1 = new Array("http://www.hellboundcomic.com/","Hellbound")				// maniac_wolfman @ hotmail.com
	comic2 = new Array("http://thatguy.comicgenesis.com","Thatguy")					// willl59 @ yahoo.com
	comic3 = new Array("http://brokenglass.comicgenesis.com","Broken Glass")			// fishingformercy @ hotmail.com
	comic4 = new Array("http://beforedawn.comicgenesis.com","Before Dawn")
	comic5 = new Array("http://distantscreaming.comicgenesis.com/","Distant Screaming")
	comic6 = new Array("http://ragtag.comicgenesis.com/","Ragtag")					// golemcc @ yahoo.com
	comic7 = new Array("http://www.tehcomic.com/","Spooked")					// animus.blue @ gmail.com
	comic8 = new Array("http://www.undeadfriend.com/","Undead Friend")				// eecomics @ gmail.com
	comic9 = new Array("http://remembrance.comicgenesis.com/","Remembrance")			// 
	comic10 = new Array("http://fadetoblack.comicgenesis.com/","Fade to Black")			// origamiemu @ gmail.com

 
	comictotal=11

 
	function goto_URL(object) 
		{
    		window.location.href = object.options[object.selectedIndex].value;
		}



// Sets the signup page, banner and subheading

	document.writeln('<FORM><TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD align="center"><FORM><A HREF="http://forums.comicgenesis.com/viewtopic.php?t=64613""><IMG SRC="http://img.photobucket.com/albums/v220/SnarkyBoojum/keen/dead1.jpg" border=0>');
	document.writeln('<TR><TD align="center"><SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');

	document.write('<OPTION VALUE=""> &nbsp; &nbsp; Realm of the Dead<\/OPTION>');
	document.write('<OPTION VALUE="">-----<\/OPTION>');




// 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); i++)
		{
		r=Math.floor(Math.random()*(comictotal))
		temp = randarray[r]
		randarray[r] = randarray[i]
		randarray[i] = temp;
		}




for (var i=0; i<(comictotal); i++)
{
	showcomic=eval("comic"+randarray[i])
	document.writeln('<OPTION VALUE="',showcomic[0],'">',showcomic[1],'<\/OPTION>');
}



document.write('<OPTION VALUE="">-----<\/OPTION>');
document.write('<OPTION VALUE="http://cgwiki.comicgenesis.com/index.php/List_of_Dropdowns">Dropdown Directory 4.0<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');




