function insertAdIntoDiv()

in site/js/pa.js [55:69]


function insertAdIntoDiv(div, ad)
{
  while (div.firstChild) { div.removeChild(div.firstChild); }
  var a = document.createElement('a');
  a.setAttribute('href', ad.href);
  var img = document.createElement('img');
  img.src = ad.image;
  img.width =ad.width;
  img.height = ad.height;
  img.alt = ad.text;
  img.title = ad.text;
  img.className = 'noborder';
  a.appendChild(img);
  div.appendChild(a);
}