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

NumberOfImagesToRotate1 = 9;

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

FirstPart1 = '<img src="images_box/box10';
LastPart1 = '.jpg" height="105" width="140" >';

function printImage1() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate1);
document.write(FirstPart1 + r + LastPart1);
}
//-->
