// JavaScript Document
imgDIR = "images"
var theImages = new Array()
theImages[0] = imgDIR+'/banner01.gif'
theImages[1] = imgDIR+'/banner02.gif'
theImages[2] = imgDIR+'/banner03.gif'
theImages[3] = imgDIR+'/banner04.gif'
theImages[4] = imgDIR+'/banner05.gif'
theImages[5] = imgDIR+'/banner06.gif'
theImages[6] = imgDIR+'/banner07.gif'
theImages[7] = imgDIR+'/banner08.gif'
theImages[8] = imgDIR+'/banner09.gif'
theImages[9] = imgDIR+'/banner10.gif'
theImages[10] = imgDIR+'/banner11.gif'
theImages[11] = imgDIR+'/banner12.gif'
theImages[12] = imgDIR+'/banner13.gif'
theImages[13] = imgDIR+'/banner14.gif'
theImages[14] = imgDIR+'/banner15.gif'
theImages[15] = imgDIR+'/banner16.gif'
theImages[16] = imgDIR+'/banner17.gif'
theImages[17] = imgDIR+'/banner18.gif'
theImages[18] = imgDIR+'/banner19.gif'
theImages[19] = imgDIR+'/banner20.gif'
theImages[10] = imgDIR+'/banner21.gif'
theImages[11] = imgDIR+'/banner22.gif'
theImages[12] = imgDIR+'/banner23.gif'
theImages[13] = imgDIR+'/banner24.gif'
theImages[14] = imgDIR+'/banner25.gif'
theImages[15] = imgDIR+'/banner26.gif'
theImages[16] = imgDIR+'/banner27.gif'
theImages[17] = imgDIR+'/banner28.gif'
theImages[18] = imgDIR+'/banner29.gif'
theImages[19] = imgDIR+'/banner30.gif'

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]+'">');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function open_win(page)
{
    Details = window.open(page,"Details","left=0,top=0,height=516,width=770,scrollbars=no,status=no,toolbar=no,location=no,maxbutton=hidden");
    Details.focus();
}


