
// Top Banner Rotation for Internet Cafes 


function banner(img_source,url,alt,chance) {
   this.img_source = img_source;
   this.url = url;
   this.alt = alt;
   this.chance = chance;
}

function display() {
   with (this) document.write("<A HREF=" + url + "><IMG SRC='" + img_source + "' WIDTH=728 HEIGHT=90 BORDER=0 ALT='" + alt + "'></A>");
}
banner.prototype.display = display;
banners = new Array();
//banners[0] = new banner("Displays/Top_Banners/Nitro_TB1.gif",
//                        "http://www.ilmsystems.co.uk target='_blank'",
//						"ilm Computers",
//                        10);
//banners[1] = new banner("Displays/Top_Banners/Nitro_TB1.gif",
//                        "DiscountCode/ilm/ilm_Payroll.aspx target='_blank'",
//                        "ilm Payroll Services",
//                        10);
banners[0] = new banner("../Displays/Top_Banners/Local_Discounts_TB2.gif",
                        "http://www.ilmpages.com target='_blank'",
                        "ilm Pages", 
                        10);
sum_of_all_chances = 0;
for (i = 0; i < banners.length; i++) {
   sum_of_all_chances += banners[i].chance;
}
function display_banner() {
   chance_limit = 0;
   randomly_selected_chance = Math.round((sum_of_all_chances - 1) * Math.random()) + 1;
   for (i = 0; i < banners.length; i++) {
      chance_limit += banners[i].chance;
      if (randomly_selected_chance <= chance_limit) {
         document.write("<A HREF=" + banners[i].url + "><IMG SRC='" + banners[i].img_source + "' WIDTH=728 HEIGHT=90 BORDER=0 ALT='" + banners[i].alt + "'></A>");
         return banners[i];
         break;
      }
   }
}


