// JavaScript Document

<!-- Begin
var theImages = new Array()

theImages[0] = 'images/random/01.jpg'
theImages[1] = 'images/random/02.jpg'
theImages[2] = 'images/random/03.jpg'
theImages[3] = 'images/random/04.jpg'
theImages[4] = 'images/random/05.jpg'
theImages[5] = 'images/random/06.jpg'
theImages[6] = 'images/random/07.jpg'
theImages[7] = 'images/random/08.jpg'
theImages[8] = 'images/random/09.jpg'
theImages[9] = 'images/random/10.jpg'
theImages[10] = 'images/random/11.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]+'">');
}
//  End -->

<!-- Begin
function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
  newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
//  End -->

<!-- Begin
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}
//  End -->