// JavaScript Document
 <!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate3 = 6;

// Specify the first and last part of the image tag.

FirstPart3 = '<img src="images/prod/georacs';
LastPart3 = '.jpg" height="72" width="105" border="0">';

function printImage3() {
var r3 = Math.ceil(Math.random() * NumberOfImagesToRotate3);
document.write(FirstPart3 + r3 + LastPart3);
}
//-->