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