//  Type the number of images you are rotating.

NumberOfImagesToRotate = 2;

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

FirstPart = '<img src="/images/banners/general';
LastPart = '.jpg" height="171" width="776">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}
//-->
//
function goSelect(daform) {
with(daform) {
top.window.location=options[selectedIndex].value;
}
}
//-->
