	if(!self.ScanScout)
	{
		ScanScout = {};
	}
	
	if(!ScanScout.AdUtils)
	{
		ScanScout.AdUtils = {};
	}
	
	
	ScanScout.AdUtils.showCompanionBannerHTML = function(adId, html, errorUrl, parentId)
	{
		if(!html || !adId)
		{
			return;
		}
		
		var refId = parentId || "ssCompanionBanner";
		
		var locationRef = document.getElementById(refId);
		if(!locationRef && errorUrl)
		{
			var img = new Image(1,1);
			img.src = errorUrl;
			return;
		}
		
		//TODO: see if needed to handle HTTP vs HTTPS replacements
		
		
		locationRef.innerHTML = html;
	}
