
<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 100;

// Specify the first and last part of the image tag.

FirstPart = '<img src="/images/rnav/B2_';
LastPart = '.jpg" alt="Plastic Surgery" width="220" height="333" border="1">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}

//-->
