// JavaScript Document
imgDIR = "images"
var theImages = new Array()
theImages[0] = imgDIR+'/01.gif'
theImages[1] = imgDIR+'/02.gif'
theImages[2] = imgDIR+'/03.gif'
theImages[3] = imgDIR+'/04.gif'
theImages[4] = imgDIR+'/05.gif'
theImages[5] = imgDIR+'/06.gif'
theImages[6] = imgDIR+'/07.gif'
theImages[7] = imgDIR+'/08.gif'
theImages[8] = imgDIR+'/09.gif'
theImages[9] = imgDIR+'/10.gif'
theImages[10] = imgDIR+'/11.gif'
theImages[11] = imgDIR+'/12.gif'
theImages[12] = imgDIR+'/13.gif'
theImages[13] = imgDIR+'/14.gif'
theImages[14] = imgDIR+'/15.gif'
theImages[15] = imgDIR+'/16.gif'
theImages[16] = imgDIR+'/17.gif'
theImages[17] = imgDIR+'/18.gif'
theImages[18] = imgDIR+'/19.gif'
theImages[19] = imgDIR+'/20.gif'
theImages[20] = imgDIR+'/21.gif'
theImages[21] = imgDIR+'/22.gif'
theImages[22] = imgDIR+'/23.gif'
theImages[23] = imgDIR+'/24.gif'
theImages[24] = imgDIR+'/25.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();
}


