// JavaScript Document
// 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/_rotate/05_baby.jpg'
theImages[1] = '/images/_rotate/05_kinleaves.jpg'
theImages[2] = '/images/_rotate/06_cogrow_kirk.jpg'
theImages[3] = '/images/_rotate/05_giant.jpg'
theImages[4] = '/images/_rotate/06_cogrow_maddie.jpg'
theImages[5] = '/images/_rotate/05_parisface.jpg'
theImages[6] = '/images/_rotate/06_cogrow_hibbard2.jpg'
theImages[7] = '/images/_rotate/06_cogrow_hibbard.jpg'
theImages[8] = '/images/_rotate/06_babyarnoldjareds.jpg'
theImages[9] = '/images/_rotate/06_firstfemale.jpg'
theImages[10] = '/images/_rotate/05_cogrow_steve.jpg'
theImages[11] = '/images/_rotate/06_maleflower.jpg'
theImages[12] = '/images/_rotate/05_cogrow_gayle.jpg'
theImages[13] = '/images/_rotate/05_cogrow_gayle2.jpg'
theImages[14] = '/images/_rotate/05_cogrow_gayle3.jpg'
theImages[15] = '/images/_rotate/05_cogrow_pete.jpg'
theImages[16] = '/images/_rotate/06_weighoff.jpg'
theImages[17] = '/images/_rotate/07_elephants.jpg'
theImages[18] = '/images/_rotate/07_weighoff5.jpg'
theImages[19] = '/images/_rotate/07_weighoff4.jpg'
theImages[20] = '/images/_rotate/07_weighoff3.jpg'
theImages[21] = '/images/_rotate/07_peteflowers.jpg'
theImages[22] = '/images/_rotate/07_weighoff2.jpg'
theImages[23] = '/images/_rotate/07_weighoff1.jpg'
// 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 border=1 src="'+theImages[whichImage]+'">');
}

//  End


function OnScreen(url) {
	remote=window.open(url,'PopUpWindow','height=400,width=640,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=1,resizable=0,scrollbars=yes,status=0,titlebar=0,toolbar=0,z-lock=33');
	if (!remote.opener) 
		remote.opener = self;
	if (window.focus)
		remote.focus();  
}

