<!--//pop upvar newWindow = null;function closeWin(){	if (newWindow != null){		if(!newWindow.closed)			newWindow.close();	}}function popUpWin(url, type, strWidth, strHeight){		closeWin();		if (type == "fullScreen"){		strWidth = screen.availWidth - 10;		strHeight = screen.availHeight - 160;	}		var tools="";	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";	if (type == "console") tools = "resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";	newWindow = window.open(url, 'newWin', tools);	newWindow.focus();}// toggle visibility - snatched from zeldman.comfunction toggle( targetId ){  if (document.getElementById){  		target = document.getElementById( targetId );  			if (target.style.display == "none"){  				target.style.display = "";  			} else {  				target.style.display = "none";  			}  	}}// RANDOM IMAGES// Set up the image files to be used.var theImages = new Array() // do not change this// To add more image files, continue with the// pattern below, adding to the array.theImages[0] = '/images/big/ookla.gif'theImages[1] = '/images/big/bunnies.gif'theImages[2] = '/images/big/monkey.gif'theImages[3] = '/images/big/spidies.gif'theImages[4] = '/images/big/welcomecat.gif'theImages[5] = '/images/big/goldcat.gif'theImages[6] = '/images/big/fishdude.gif'// do not edit anything below this linevar j = 0var p = theImages.length;var preBuffer = new Array()for (i = 0; i < p; i++){   preBuffer[i] = new Image()   preBuffer[i].src = theImages[i]}var whichImage = Math.round(Math.random()*(p-1));function showImage(){document.write('<img src="'+theImages[whichImage]+'" border="0" align="left" alt="">');}// -->
