function get_random()
{

// random()*X) is the number of images
var ranNum= Math.floor(Math.random()*2);
return ranNum;
}
var whichImg=get_random();

function show_image() {

// Array(X) is the number of images
var img=new Array(2)
img[0]="mainBanner3.jpg";
img[1]="mainBanner4.jpg";

document.write("<table background='homepageImages/Rm/235/");
document.write(img[whichImg]);
document.write("'>");
}