



function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=1000,height=120,left=10,scrollbars=no');
return false;
}




var theImages = new Array() 

theImages[0] = 'images/random/random_01.jpg'
theImages[1] = 'images/random/random_02.jpg'
theImages[2] = 'images/random/random_03.jpg'
theImages[3] = 'images/random/random_04.jpg'
theImages[4] = 'images/random/random_05.jpg'
theImages[5] = 'images/random/random_06.jpg'
theImages[6] = 'images/random/random_07.jpg'
theImages[7] = 'images/random/random_08.jpg'
theImages[8] = 'images/random/random_09.jpg'
theImages[9] = 'images/random/random_10.jpg'

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]+'">');
}

