<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 2;

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

FirstPart = '<img align="centre" src="offers/logo';
LastPart = '.gif" height="200" width="150">';

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