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

NumberOfImagesToRotate = 3;

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

FirstPart = '<img src="images/ce_banner_';
LastPart = '.jpg" height="129" width="900" alt="Chilkat Environmental Ltd; Haines, Alaska. (907) 766-3897" border="0" align="bottom">';

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