function CreateBanner(targetElement, affiliateId, sourceFile, sourceFileWidth, sourceFileHeight)
{
  var innerHtml;

	obj = document.getElementById(targetElement);
  
  innerHtml = '';
  innerHtml += '<object type="application/x-shockwave-flash" data="'+ sourceFile +'?affid='+ affiliateId +'" width="'+ sourceFileWidth +'" height="'+ sourceFileHeight +'">';
  innerHtml += '<param name="menu" value="false" /><param name="movie" value="'+ sourceFile +'?affid='+ affiliateId +'" />';
  innerHtml += '<a href="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank"><img src="http://affiliates.elizawashere.nl/shared/images/noflash.jpg" width="' + sourceFileWidth + '" height="' + sourceFileHeight + '" alt="Your browser doesn\'t support Flash! Click here to upgrade to Flash." /></a>';
  innerHtml += '</object>';
  
  obj.innerHTML = innerHtml;
}
