// Multihued Doom Bees



// comic list
// comicX=new Array("url","name of comic")



comic0 = new Array("http://eecomics.net/","Emergency Exit")		// eecomics @ gmail.com
comic1 = new Array("http://junkriot.comicgen.com/","junkRIOT")		// theladyfreak @ yahoo.com
comic2 = new Array("http://pals.comicgen.com/","Pals")			// voodoo4936 @ lycos.com
comic3 = new Array("http://fletcherapts.comicgenesis.com/","Fletcher Apts.")	// JTigerclaw @ gmail.com
comic4 = new Array("http://psitech.comicgen.com/","Psiotechniqa")	// webkilla @ gmail.com
comic5 = new Array("http://thethirteenthmonth.comicgenesis.com/","The Thirteenth Month")	// acmuench @ comcast.net

comictotal=6

 
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=70744""><IMG SRC="http://img.photobucket.com/albums/v220/SnarkyBoojum/keen/color1.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; Colourful Comics<\/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>');




