//////////////////////////
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
var p =91;
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 style="background-image : url(../HeadPics/'+ (whichImage +1)+ '.jpg); height :  69px  ; display:block; background-repeat:repeat-x;"></td>');
}
/////////////////////////
