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