Code:
<script type="text/javascript">
/**
* Copyright 2002 Bontrager Connection, LLC
* Modified @ codingforums.com by rangana on this thread: http://codingforums.com/showthread.php?t=155309
* Ability to add a separate URL to each image
*/
// Initialize the links you like to use - should match on the NumberOfImagesToRotate var
links=['http://www.link1.com','http://www.link2.com'];
// 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('<a href="'+links[r-1]+'">' + FirstPart + r + LastPart + '</a>');
}
</script>