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