File: //old_home_backup/mykensington.co.uk/public_html/ext_iframe/banners/banners_show.js
<!--
// banner show here
function startBanner()
{
var randy = Math.random();
randy = randy*10;
randy = Math.round(randy);
//alert(randy)
checkIt(randy);
}
function checkIt(num)
{
if((all_banners[num])&&(num != "0"))
{
//alert("it's there")
drawBanner(num)
}
else
{
//alert("not there starting over")
startBanner()
}
}
startBanner();
function drawBanner(num)
{
var bannerEscaped = eval("all_banners["+num+"][0]");
var banner = unescape(bannerEscaped);
document.writeln(banner);
}
//-->