// JavaScript Document
//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 39;

// Specify the first and last part of the image tag. 

FirstPart = '<img src="Resource/footers/Footers';
LastPart = '.gif" height="50" width="760">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}
//-->
