// JavaScript Document
function addBanner(){

var NumberOfAds = 2;
var AdNumber = Math.floor(Math.random()*NumberOfAds);
AdNumber +=1;
if (AdNumber==1)
{
 url="http://www.newyearseve.com.au/";
 Graphic="images/NYE_300x140-copy.gif";
 width = "300"
 height = "140"
 text = "New Years Eve @ NewYearsEve.com.au"
 target= "_blank"
}
if (AdNumber==3)
{
 url="/paddle-steamer-decoy.php";
 Graphic="images/psdecoy_300x143-austday.gif";
 width = "300"
 height = "140"
 text = "Perth: Paddle Steamer Decoy - Australia Day"
 target= ""
}
if (AdNumber==2)
{
 url="/prestige-harbour-cruises.php";
 Graphic="images/banners/PHC-AustDay_300x140.gif";
 width = "300"
 height = "140"
 text = "Sydney: Prestige Harbour Cruises - Australia Day Cruises"
 target= ""
}

if (AdNumber==4)
{
 url="/young-and-jackson-hotel.php";
 Graphic="images/banners/yandj_300x140-ausday.gif";
 width = "300"
 height = "140"
 text = "Melbourne: Young and Jackson Hotel - Australia Day Beerfest 2010"
 target= ""
}

if (AdNumber==5)
{
 url="/belgian-beer-cafe-bluestone.php";
 Graphic="images/banners/belgian_300x140-ausday.gif";
 width = "300"
 height = "140"
 text = "Melbourne: Belgian Beer Cafe Bluestone - Australia Day Festival"
 target= ""
}

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

}