<!-- Original:  Rich Galichon (rich@galichon.net) -->
<!-- ONLY FREE DOWNLOADS: www.click-now.net -->
<!-- Begin
function banner(imgSource,url,alt,chance) {
this.imgSource = imgSource;
this.url = url;
this.alt = alt;
this.chance = chance;
}
function dispBanner() {
with (this) document.write("<A HREF=" + url + "><IMG SRC='" + imgSource + "' WIDTH=468 HEIGHT=60 BORDER=0 ALT='" + alt + "'></A>");
}
banner.prototype.dispBanner = dispBanner;
banners = new Array();
banners[0] = new banner("http://www.free-codecs.com/pictures/ban/vso_convertx.gif",
                        "http://esd.element5.com/affiliate.html?publisherid=26469&affiliateid=71258&target=http://www.free-codecs.com/download/ConvertXtoDVD.htm target='_blank' title='Download ConvertXtoDVD!'",
                        "Download ConvertXtoDVD!",
                        10);
banners[1] = new banner("http://www.free-codecs.com/pictures/ban/winavi.gif",
                        "http://esd.element5.com/affiliate.html?publisherid=39738&affiliateid=71258&target=http://www.free-codecs.com/download/WinAVI_Video_Converter.htm target='_blank' title='Download WinAVI Video Converter!'",
                        "Download WinAVI Video Converter!",
                        10);
banners[2] = new banner("http://www.free-codecs.com/pictures/ban/cucusoft.gif",
                        "http://www.free-codecs.com/download/Cucusoft_Video_Converter.htm target='_blank' title='Download Cucusoft Video Converter!'",
                        "Download Cucusoft Video Converter!",
                        10);
banners[3] = new banner("http://www.free-codecs.com/pictures/ban/slysof.gif",
                        "http://www.free-codecs.com/download/AnyDVD.htm target='_blank' title='Download AnyDVD + CloneDVD. Now with promotional code!'",
                        "Download AnyDVD + CloneDVD. Now with promotional code!",
                        10);
banners[4] = new banner("http://www.free-codecs.com/pictures/ban/avs_468_60.gif",
                        "http://www.free-codecs.com/download/AVS_Video_Tools.htm target='_blank' title='Download AVS Video Tools'",
                        "Download AVS Video Tools",
                        10);
banners[5] = new banner("http://www.free-codecs.com/pictures/ban/vc468x60-1.gif",
                        "http://www.free-codecs.com/download/ConvertMovie.htm target='_blank' title='Download Movavi Video Converter (former ConvertMovie)'",
                        "Download Movavi Video Converter (former ConvertMovie)",
                        10);
sum_of_all_chances = 0;
for (i = 0; i < banners.length; i++) {
sum_of_all_chances += banners[i].chance;
}
function randomBanner() {
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].imgSource + "' WIDTH=468 HEIGHT=60 BORDER=0 ALT='" + banners[i].alt + "'></A>");
return banners[i];
break;
      }
   }
}
//  End -->