// Sports pages banner adsarray3
// The actual array "banner" contains all the info
// Just remember the last item in the array list has no comma after it

 function bannerAd(url, alt, img)
{
   this.url = url;
   this.alt = alt;
   this.img = img;
}
banner = new Array(
 new bannerAd("http://tracker.tradedoubler.com/pan/TrackerServlet?p=232&a=283890&g=1657", 
              "Golfbreaks",
              "http://impgb.tradedoubler.com/imp/img/1657/283890"),
 new bannerAd("http://www.javaplay.co.uk/",
              "JavaPlay",
              "http://www.getoutguide.co.uk/ads/javaplay468x60.gif"),
 new bannerAd("http://www.poptexts.co.uk/",
              "PopTexts",
              "http://www.getoutguide.co.uk/ads/poptexts468x60.gif"),
 new bannerAd("http://www.awin1.com/tclick.php?id=10650&mid=80",
              "ExtremePie.com",
              "http://www.awin1.com/show.php?mid=80&group=Banners+468x60&gid=446&aid=10650")
);
function placeBanner( id )
{
 document.write(
    '<A HREF="' + banner[id].url + '" alt="' + banner[id].alt + '">'
  + '<IMG SRC="' + banner[id].img
  + '"  width="468" height="60" border="0">'
  + '</A>'
 )
}
