// JavaScript Document
//////////////////////////
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
var p = 40;
var whichImage = Math.round(Math.random()*(p-1));

function showUpperImage()
{
//document.write('<img background-image : url(HeadPics/'+theImages[whichImage]+'); height :  100px  ; display:block; background-repeat:repeat-x;/>');
document.write('<td colspan="3" style="background-image : url(../images/TopRand/'+ (whichImage +1)+ '.jpg);height:140px;"></td>');
}
/////////////////////////
