
function randomlargeimage() {

images = new Array(3);

images[0] = "<a href = '/products/index.asp?category=413' id='bannerlink'><img src='/images/banner1.jpg' border='0' id='banner1'></a>";
images[1] = "<a href = '/products/' id='bannerlink'><img src='/images/banner2.jpg' border='0' id='banner1'></a>";
images[2] = "<a href = '/products/index.asp?category=412' id='bannerlink'><img src='/images/banner3.jpg' border='0' id='banner1'></a>";


index = Math.floor(Math.random() * images.length);

banners = index + 1;
document.write(images[index]);

}

