// DoomBee Superheros



// comic list
// comicX=new Array("url","name of comic")



comic0 = new Array("http://www.green-avenger.com","The Green Avenger")			// ryukochan @ gmail.com	
comic1 = new Array("http://ant.comicgenesis.com/","A.N.T.") 				// Hamsterant @ gmail.com
comic2 = new Array("http://www.coldservings.com/","Cold Servings") 			// dburkhuad @ comcast.net
comic3 = new Array("http://mindmistress.comicgenesis.com/","Mindmistress")		// alschroeder3 @ comcast.net
comic4 = new Array("http://www.pointguardian.com/","Point Guardian")			// bencarver @ charter.net
comic5 = new Array("http://specialschool.toonspace.com/","Special School")		// specialschool @ andysdrawings.co.uk
comic6 = new Array("http://dasien.comicgenesis.com/","Dasien")				// czarland @ yahoo.com
comic7 = new Array("http://keystonecomic.comicgenesis.com/","Adventures of Keystone")	// brucealderfer @ hotmail.com
comic8 = new Array("http://dochyperion.comicgenesis.com/","Doc Hyperion")		// cyborg_caveman @ hotmail.com
comic9 = new Array("http://popsicleman.comicgenesis.com/","Popsicleman")		// popsicleman.comic @ gmail.com
comic10 = new Array("http://www.supercreep.co.uk/","Creep")				// B_muzed @ hotmail.com
comic11 = new Array("http://stuporheroes.comicgenesis.com/","Active Stupor Heroes")	// activestuporheroes @ yahoo.com
comic12 = new Array("http://notquiteheroes.comicgenesis.com/","Not Quite Heros") 	// beanyjoe @ yahoo.com
comic13 = new Array("http://lightbringer.comicgenesis.com/","Lightbringer") 		// lewis @ lovhaug.com
comic14 = new Array("http://goodandevil.comicgenesis.com/","Forces of Good and Evil") 	// idealcomix @ yahoo.com
comic15 = new Array("http://victoryman.comicgenesis.com/","Victory") 			// goku529
comic16 = new Array("http://www.legacyheroes.com/youngdefenders/","The Young Defenders")// eric @ legacyheroes.com
comic17 = new Array("http://www.legacyheroes.com/heroforce/","The Hero Force") 		// eric @ legacyheroes.com


comictotal=18

 
	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=65358""><IMG SRC="http://img.photobucket.com/albums/v220/SnarkyBoojum/keen/hero1.jpg" border=0>');
	document.writeln('<TR><TD align="center"><SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');

	document.write('<OPTION VALUE="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; I Need a Hero...<\/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>');





