// JavaScript Document
function addBanner(){

var NumberOfAds = 2;
var AdNumber = Math.floor(Math.random()*NumberOfAds);
AdNumber +=1;
if (AdNumber==1)
{
 url="http://www.goodfriday.com.au/lifesaball.html";
 Graphic="http://www.goodfriday.com.au/images/lifesaball_300x143-goodfrid.gif";
 width = "300"
 height = "143"
}
if (AdNumber==2)
{
 url="http://www.eastersale.com.au/";
 Graphic="http://www.goodfriday.com.au/images/eastersales_300x143.gif";
 width = "300"
 height = "143"
}


document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + Graphic + '\" class=\"image\" width=')
document.write(width + ' height=' + height + ' ');
document.write('border=0>');
document.write('</a>');

}