// Homepage banner adsarray1
// The actual array "banner" contains all the info
// Just remember the last item in the array list doesn't have a comma after it

 function bannerAd(url, alt, img)
{
   this.url = url;
   this.alt = alt;
   this.img = img;
}
banner = new Array(
 new bannerAd("http://www.inphormationdesk.org/", 
              "Say NO to Phorm",
              "http://www.getoutguide.co.uk/ads/phorm-ban.bmp"),
 new bannerAd("http://www.greasypalm.co.uk/r/?l=564917",
              "GreasyPalm",
              "http://www.greasypalm.co.uk/partner/images/468x60a.gif"),
 new bannerAd("http://www.inphormationdesk.org/",
              "inphormationdesk.org",
              "http://www.getoutguide.co.uk/ads/phorm_warning.PNG"),
 new bannerAd("http://www.firstcalltickets.com/cgi-bin/search.exe?crypto_block=c---FBIWEtpgbHd-HY2MY-YB2iesq3tYf8zPynFrIE3sTI8uparfjX_SA0--Y&user_id=getout",
              "GetOutGuide",
              "http://www.getoutguide.co.uk/ads/ban3.gif"),
 new bannerAd("http://www.getoutguide.co.uk/awaydays/hotelsearch.htm",
              "Online secure hotel booking",
              "http://www.getoutguide.co.uk/ads/cng-banner2.gif")
);
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>'
 )
}
