//populate the random links
arLinks = new Array();
arLinks[0] = new Array("Entrances to Hell","http://www.entrances2hell.co.uk/");
arLinks[1] = new Array("Soviet-Propaganda.com","http://www.soviet-propaganda.com/");
arLinks[2] = new Array("Ian Fleming & Aliester Crowley","http://www.redflame93.com/Fleming.html");
arLinks[3] = new Array("The HP Lovecraft Library","http://www.dagonbytes.com/thelibrary/lovecraft/");
arLinks[4] = new Array("Russian Space Web","http://www.russianspaceweb.com/");
arLinks[5] = new Array("Spacebrain robot sculptures Postcards","http://www.spacebrain.no/gallery_skulptures.html");
arLinks[6] = new Array("Mimi Smartypants","http://smartypants.diaryland.com/");
arLinks[7] = new Array("Historical Atlas of the 20th Century","http://users.erols.com/mwhite28/20centry.htm");
arLinks[8] = new Array("Francis E. Dec kookrant","http://www.subgenius.com/bigfist/FIST2000-4/kooks/X0004_Saint_Francis_E..html");
arLinks[9] = new Array("Security Arms","http://www.securityarms.com/");
arLinks[10] = new Array("Koncordski","http://www.super70s.com/Super70s/Science/Transportation/Aviation/TU-144.asp");
arLinks[11] = new Array("Snuff Video: The Japanese Ring movies","http://www.quirkafleeg.freeserve.co.uk/Snuff.htm");
arLinks[12] = new Array("Clarke Ashton Smith","http://www.eldritchdark.com/");
arLinks[13] = new Array("Pictures Of Walls","http://www.picturesofwalls.com/index.html")
arLinks[14] = new Array("The Last Words of Dutch Schultz","http://feastofhateandfear.com/archives/dutch.html");
arLinks[15] = new Array("The Me262 Project","http://www.stormbirds.com/project/");
arLinks[16] = new Array("The Magic Gallery","http://www.magicgallery.com/");
arLinks[17] = new Array("Pulp Fiction Covers","http://www.worldwideretro.com/nuke/index.php?name=coppermine&file=thumbnails&album=5");
arLinks[18] = new Array("The Trip To Jerusalem","http://www.bbc.co.uk/nottingham/entertainment/pubs/trip.shtml");
arLinks[19] = new Array("Subterranea Britannica","http://www.subbrit.org.uk/");
arLinks[20] = new Array("British Rockets and Satellite Launchers","http://www.spaceuk.org/");
arLinks[21] = new Array("The hollow planets theory","http://www.hollowplanets.com/");
arLinks[22] = new Array("The mechanical turk","http://www.theturkbook.com");
arLinks[23] = new Array("The Philip K Dick book cover gallery","http://www.philipkdick.com/works_covers.html");
arLinks[24] = new Array("EC Science Fiction Comics","http://costa.lunarpages.com/ec/");
arLinks[25] = new Array("Sobaka Dossier","http://www.diacritica.com/sobaka/dossier/index.html");
arLinks[26] = new Array("Some cool robots","http://spinefinger.netfirms.com/Robots/Robots_13.htm");
arLinks[27] = new Array("Conflict Map 1900 - 2001","http://www.nobel.se/peace/educational/conflictmap/");
arLinks[28] = new Array("Soviet Exploration of Venus","http://www.mentallandscape.com/V_Venus.htm");
arLinks[29] = new Array("Sedlec Ossuary","http://www.ludd.luth.se/users/silver_p/Sedlec/kutna01.html");
arLinks[30] = new Array("Rapture Index","http://www.raptureready.com/rap2.html");
arLinks[31] = new Array("FutureFeedForward","http://www.futurefeedforward.com/");
arLinks[32] = new Array("Chesley Bonestell Space Art Gallery","http://www.bonestell.com/the_chesley_bonestell_archives005.htm");
arLinks[33] = new Array("Chinese Academey Of Space Technology","http://www.cast.cn/en/")
arLinks[34] = new Array("The Homepage of Professor Bernard Quatermass","http://www.geocities.com/TelevisionCity/8504/qhome.htm")



//arLinks[] = new Array("","");

function randomlinks(numlinks) {

	var i = 0
	while (i<numlinks) {
		var randnum;
		randnum = Math.floor(Math.random() * arLinks.length);
		if (arLinks[randnum]) {
			document.write("<tr>");
			document.write("<td valign='top'><a href='" +  arLinks[randnum][1]+ "' target='_blank'><img src='images/randlink.gif' width='18' height='18' alt='' border='0'></a></td>");			
			document.write("<td valign='top'><div class='navdiv'><a href='" +  arLinks[randnum][1]+ "' class='navunselected' target='_blank'>" +  arLinks[randnum][0] + "</a></div></td>");
			document.write("</tr>");
			arLinks[randnum] = null;
			i++;
		}
	} 

}	
	
	

