



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=295,height=280,left=10,scrollbars=no');
return false;
}




var theImages = new Array() 


theImages[0] = '/images/image05.jpg'
theImages[1] = '/images/image08.jpg'
theImages[2] = '/images/image11.jpg'
theImages[3] = '/images/image03.jpg'
theImages[4] = '/images/image04.jpg'
theImages[5] = '/images/image23.jpg'
theImages[6] = '/images/image25.jpg'
theImages[7] = '/images/image24.jpg'
theImages[8] = '/images/image09.jpg'
theImages[9] = '/images/image13.jpg'
theImages[10] = '/images/image26.jpg'
theImages[11] = '/images/image27.jpg'
theImages[12] = '/images/image28.jpg'
theImages[13] = '/images/image29.jpg'
theImages[14] = '/images/image30.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]+'">');
}
