 imageList = new Array
(
"http://www.greettech.com/images/refreshcontact1.jpg",
"http://www.greettech.com/images/refreshcontact2.jpg",
"http://www.greettech.com/images/refreshcontact3.jpg",
"http://www.greettech.com/images/refreshcontact4.jpg",
"http://www.greettech.com/images/refreshcontact5.jpg"

);
 
urlList = new Array
(
"http://www.greettech.com/contactus.shtml",
"http://www.greettech.com/contactus.shtml",
"http://www.greettech.com/contactus.shtml",
"http://www.greettech.com/contactus.shtml",
"http://www.greettech.com/contactus.shtml"

);
 
// Get a randomImage index
var randomImage =new Number(Math.floor(Math.random() * imageList.length));
//write out the tag for the banner
document.write("<A HREF=" + urlList[randomImage] + " target=><IMG SRC=" + imageList[randomImage] + " border=0  alt='Click here to read more'></a>");
