
//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = advertisers_list3.html> <img src='logos/cwi.gif' border= no border alt= clearwaterimaging></a>";

images[1] = "<a href = advertisers_list4.html> <img src='logos/pro.jpg' border= no border alt= procoat></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done