<!--
function banner(img_source,url,over,out,alt,chance) {
   this.img_source = img_source;
   this.url = url;
   this.over = over;
   this.out = out;
   this.alt = alt;
   this.chance = chance;
}
function display() {
   with (this) document.write("<A HREF='"+url+"' TARGET='_blank' ONMOUSEOVER=\"window.status=\'"+over+"\'; return true;\" ONMOUSEOUT=\"window.status=\'"+out+"\'; return true;\"><IMG SRC='"+img_source+"' ALT=\""+alt+"\" BORDER=0></A>");
}
banner.prototype.display = display;
banners = new Array();
banners[0] = new banner("http://www.awltovhc.com/nh65uuymsqBEFELFGHBDCGKFGIH",
                        "http://www.kqzyfj.com/7t75vpyvpxCFGFMGHICEDHLGHJI",
                        "http://www.bestbuy.com",
                        " ",
                        "Click here for Best Buy Music, Movies and Games",
                        10);
banners[1] = new banner("http://www.afcyhf.com/1o117p59y31NQRQXRSTNPOSWXXWS",
                        "http://affiliate.buy.com/gateway.aspx?adid=17662&aid=10489984&pid=2329345&sid=&sURL=http%3A//www.buy.com/prod/playstation-3-system-60gb-hd/q/loc/108/203458433.html",
                        "http://www.buy.com",
                        " ",
                        "PS3 at Buy.com",
                        10);
banners[2] = new banner("http://www.tqlkg.com/m077nswkqo9CDCJDEF9BAEBGAHI",
                        "http://www.anrdoezrs.net/ir97gv30v2ILMLSMNOIKJNKPJQR",
                        "http://www.codemasters.com",
                        " ",
                        "RF Online PC Game",
                        10);
banners[3] = new banner("http://www.lduhtrp.net/image-2329345-10377968",
                        "http://rover.ebay.com/rover/1/711-1751-2978-351/1?aid=10377968&pid=2329345",
                        "http://www.ebay.com",
                        " ",
                        "Click Here",
                        10);
banners[4] = new banner("http://www.tqlkg.com/ja103p59y31NQRQXRSTNPOQVTPXQ",
                        "http://www.kqzyfj.com/pb115mu2-u1HKLKRLMNHJIKPNJRK",
                        "http://www.gamefly.com",
                        " ",
                        "Video Game Rentals Delivered",
                        10);
banners[5] = new banner("http://www.lduhtrp.net/f5108h48x20MPQPWQRSMONRVVQSV",
                        "http://www.tkqlhce.com/lr82ox52x4KNONUOPQKMLPTTOQT",
                        "http://store.gameshark.com",
                        " ",
                        "GameSharkStore",
                        10);
banners[6] = new banner("http://www.lduhtrp.net/je116z15u-yJMNMTNOPJLKMTSSTT",
                        "http://www.tkqlhce.com/rt67kjspjr69A9GABC6879GFFGG",
                        "http://www.half.com",
                        " ",
                        "Great Deals on Video Games at Half.com",
                        10);
banners[7] = new banner("http://www.gamersoundtracks.com/images/banners/jamster.gif",
                        "http://www.tkqlhce.com/fa100mu2-u1HKLKRLMNHJILPNMQM",
                        "http://www.jamster.com",
                        " ",
                        "Cell Games",
                        10);
banners[8] = new banner("http://www.ftjcfx.com/fk117ltxlrpADEDKEFGACBEKHKGC",
                        "http://www.kqzyfj.com/t270dlurlt8BCBICDE8A9CIFIEA",
                        "http://www.LucasArtsStore.com",
                        " ",
                        "LucasArtsStore.com - Official LucasArts Store",
                        10);
banners[9] = new banner("http://www.gamersoundtracks.com/images/banners/stylinonline.gif",
                        "http://www.kqzyfj.com/hl101cy63y5LOPOVPQRLNMQQQVUO",
                        "http://stylinonline.stores.yahoo.net",
                        " ",
                        "Stylin Online - T-Shirts",
                        10);
banners[10] = new banner("http://www.play-asia.com/paOS-1e-74-cy-49-en.gif",
                         "http://www.play-asia.com/SOap-23-83-7j3h-49-en.html",
                         "http://www.play-asia.com",
                         " ",
                         "Play-Asia.com - Buy Video Games for Consoles and PC - From Japan, Korea and other Regions!",
                         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+"' TARGET='_blank' ONMOUSEOVER=\"window.status=\'"+banners[i].over+"\'; return true;\" ONMOUSEOUT=\"window.status=\'"+banners[i].out+"\'; return true;\"><IMG SRC='"+banners[i].img_source+"' ALT=\""+banners[i].alt+"\" BORDER=0></A>");
         return banners[i];
         break;
      }
   }
}
//-->