var _adImage = "Images/Ads/pizza_ad.png";
var _adTitle = "Visit Kenny's Pizza";
var _adLink  = "http://www.kennyspizza.com";

function initContent()
{
   var botcadImage = new Image();
   botcadImage.src = _adImage;
   //set the Image
   document.getElementById("adImage").src = botcadImage.src;
   
   //Set the ad URL and title
   document.getElementById("adLink").href  = _adLink;
   document.getElementById("adLink").title = _adTitle;
        

}