<!--// windows borrowed from veer.comfunction openzgo(windowname) {	msgWindow=window.open (windowname,"zgoWindow","toolbar=no,menubar=no,resizable=no,scrollbars=no,width=300,height=200");}function openhelp(windowname) {	msgWindow=window.open (windowname,"helpWindow","toolbar=no,menubar=no,resizable=no,scrollbars=yes,width=400,height=450");}function openothers(windowname) {	msgWindow=window.open (windowname,"othersWindow","toolbar=no,menubar=no,resizable=no,scrollbars=yes,width=200,height=400");}function openpreview(windowname) {	msgWindow=window.open (windowname,"previewWindow","toolbar=no,menubar=no,resizable=no,scrollbars=no,width=600,height=300");}// 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'// 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">');}// -->