Code:
<script type="text/javascript" language="JavaScript">
<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.
NumberOfImagesToRotate = 2;
// Specify the first and last part of the image tag.
FirstPart = '<img src="images/ads/side';
LastPart = '.jpg" height="151" width="222">';
function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}
//-->
</script>
Okay, I have this to rotate advertisement images for me. However, I want to add a seperate URL to each image that I have. How would I go about doing that?