// JavaScript Document
function addBanner(){

var NumberOfAds = 1;
var AdNumber = Math.floor(Math.random()*NumberOfAds);
AdNumber +=1;
if (AdNumber==1)
{
 url="http://www.newyearseve.com.au/";
 Graphic="images/banners/NYE_300x140-copy.gif";
 width = "300"
 height = "140"
 text = "CupDay.com.au - New Years Eve"
 target= "_blank"
}

document.write('\r<a href=\"' + url + '\" ');
if (target!="")
{
	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>');

}