  function PBS_ad_info (link, image, ad_id) {
    this.link = link;
    this.image = image;
    this.ad_id = ad_id;
  }

  PBS_ad_info.prototype.adLink = function (url) {
    return "/ad/" + this.ad_id + url + "redir/" + this.link;
  }

  PBS_ad_info.prototype.adHtml = function (url, homepage) {
    var curr_page = document.location.pathname;
    if(!homepage && (curr_page == url || curr_page == url + "index.html"))
      return "<!-- no ad -->"
    else
      return '<div id="adbanner" style="text-align: center; margin-top: 2px; margin-bottom: 2px;"><a href="' + this.adLink(url) + '"><img src="' + this.image + '?log=1" alt="Ad Banner" style="width: 728px; height: 90px; border: 1px solid;"></a></div>'
  }

  var PBS_ads = new Object();
PBS_ads[0] = new PBS_ad_info("http://www.shoppbs.org/product/index.jsp?productId=2120574", "/images/log/adbanners/desam.gif", "desam");
PBS_ads[1] = new PBS_ad_info("http://www.pbs.org/marktwain2005", "/images/log/adbanners/twain2005.gif", "twain2005");
PBS_ads[2] = new PBS_ad_info("http://www.shoppbs.org/product/index.jsp?productId=2108840", "/images/log/adbanners/htroy.gif", "htroy");
PBS_ads[3] = new PBS_ad_info("http://www.pbs.org/rxforsurvival", "/images/log/adbanners/planerx.gif", "planerx");
PBS_ads[4] = new PBS_ad_info("http://www.pbs.org/rxforsurvival", "/images/log/adbanners/mosquitorx.gif", "mosquitorx");

