// JavaScript Document
var theImages = new Array()

//Random-loading images
theImages[0] = 'http://www.onlinepokersbest.net/images/pokerstars-468.gif' // replace with names of images
theImages[1] = 'http://www.onlinepokersbest.net/images/pokerstars-468.gif' // replace with names of images
theImages[2] = 'http://www.onlinepokersbest.net/images/bet365-468.gif' // replace with names of images
theImages[3] = 'http://www.onlinepokersbest.net/images/ladbrokes-468.gif' // replace with names of images
theImages[4] = 'http://www.onlinepokersbest.net/images/titanpoker-468.gif' // replace with names of images

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<a title="PokerStars"  href="http://www.flopturnriver.com/Referrals2/Poker-Stars.html"><img src="'+theImages[whichImage]+'" border=0 width=468 height=60></a>');
}
else if(whichImage==1){
document.write('<a title="PokerStars"  href="http://www.flopturnriver.com/Referrals2/Poker-Stars.html"><img src="'+theImages[whichImage]+'" border=0 width=468 height=60></a>');
}
else if(whichImage==2){
document.write('<a title="Bet365 Poker"  href="http://www.flopturnriver.com/Referrals2/Bet-365-Poker.html"><img src="'+theImages[whichImage]+'" border=0 width=468 height=60></a>');
}
else if(whichImage==3){
document.write('<a title="Ladbrokes"  href="http://www.flopturnriver.com/Referrals2/Lad-Brokes.html"><img src="'+theImages[whichImage]+'" border=0 width=468 height=60></a>');
}
else if(whichImage==4){
document.write('<a title="Titanpoker"  href="http://www.flopturnriver.com/Referrals2/Titan-Poker.html"><img src="'+theImages[whichImage]+'" border=0 width=468 height=60></a>');
}

}

