You mean something like this:
Code:
<center>
<script language="JavaScript">
images = new Array(4);
images[0] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new' style='text-decoration: none'>Text banner 1</a>";
images[1] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new' style='text-decoration: none'>Text banner 2</a>";
images[2] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new' style='text-decoration: none'>Text banner 3</a>";
images[3] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new' style='text-decoration: none'>Text banner 4</a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>
</center>