var theImages = new Array()
theImages[0] = 'round1.jpg'
theImages[1] = 'round2.jpg'
theImages[2] = 'round3.jpg'
theImages[3] = 'round4.jpg'
theImages[4] = 'round5.jpg'
theImages[5] = 'round6.jpg'
theImages[6] = 'round7.jpg'
theImages[7] = 'round8.jpg'
theImages[8] = 'round9.jpg'
theImages[9] = 'round10.jpg'
theImages[10] = 'round11.jpg'
theImages[11] = 'round12.jpg'
theImages[12] = 'round13.jpg'
theImages[13] = 'round14.jpg'
theImages[14] = 'round15.jpg'
theImages[15] = 'round16.jpg'
theImages[16] = 'round17.jpg'
theImages[17] = 'round18.jpg'
var j = 0
var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-3));
function showImage(){
document.write('<img src="/Graphics/rounds/'+theImages[whichImage]+'" width="75" height="92">');
}
function showImage2(){
document.write('<img src="/Graphics/rounds/'+theImages[(whichImage+1)]+'" width="75" height="92">');
}
function showImage3(){
document.write('<img src="/Graphics/rounds/'+theImages[(whichImage+2)]+'" width="75" height="92">');
}
