function createtextbanner() {
        this.src = ''
        this.href = ''
        this.caption = ''
}

textbanners = new Array();

NumberTextSponsors = 1;

for(var i=1; i<=NumberTextSponsors; i++)
{ textbanners[i] = new createtextbanner() }

textbanners[1].src = ""
textbanners[1].href = "tours/atlantis/index.php"
textbanners[1].caption = "Explore underwater Barbados with Atlantis submarines. You'll gasp as you enter this unique breath-taking world of coral reefs, sea flora and fauna - a kaleidoscope of living color!"

function rnd(){
day = new Date()
z = day.getTime()
y = (z - (parseInt(z/1000,10) * 1000))/10
n = parseInt(y/100*NumberTextSponsors,10) + 1
}

rnd();  //generate a random number


var image;

if ((n > 0) && (n <= NumberTextSponsors))
	image = textbanners[n];
else
	image = textbanners[1];

var textcode ="";
textcode += '<a href="' + image.href + '" > \n'
textcode += image.caption;
textcode += '</a>'

