function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=406,height=300,left = 415,top = 362');");
}


var theImages = new Array()
theImages[0] = '/templates/images/general/design/default/head_dove.jpg'
theImages[1] = '/templates/images/general/design/default/head_moon.jpg'
theImages[2] = '/templates/images/general/design/default/head_butterfly.jpg'
theImages[3] = '/templates/images/general/design/default/head_lizard.jpg'
theImages[4] = '/templates/images/general/design/default/head_orangeflower.jpg'
theImages[5] = '/templates/images/general/design/default/head_beach.jpg'
theImages[6] = '/templates/images/general/design/default/head_lightning.jpg'
theImages[7] = '/templates/images/general/design/default/head_world.jpg'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
var whichImage = Math.round(Math.random() * (p - 1));

for (i = 0; i < p; i++) {
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

function showImage() {
	document.write('<img src="' + theImages[whichImage] + '" />');
}

