function mocraAdLoad() { 
  var badge = document.getElementById('mocra_ad_div');
  clearInterval(document.mocraAdInterval); 
  if (badge == null) { return; }
  var targetURL = "http://mocra.com"; 
  var height = 100; var width = 146;
  if (badge.className.match(/short/) != null) {
    height = 60; width = 127;
  }
  var adImageUrl = "http://ads.mocra.com/images/rescue-your-rails-project-" + width + "x" + height + ".png";
  // var adImageUrl = "../images/rescue-your-rails-project-" + width + "x" + height + ".png";
  var adTitle = "Mocra will Rescue your Rails project";
  badge.innerHTML = '<a href="' + targetURL + '" title="' + adTitle +'"><img id="mocra_ad" src="' + adImageUrl + '" title="' + adTitle + '" alt="' + adTitle + '" border="0" height="' + height + '" width="' + width + '" /></a>'; clearInterval();
};badge = document.getElementById('mocra_ad_div');if(badge){mocraAdLoad();}else{document.mocraAdInterval = setInterval('mocraAdLoad()', 300);}