function campaign_init() {
	  
	  if(  document.getElementsByTagName ) {
	  
		  if( window.location.href.indexOf("norgips.se/jultavling") > 0 ) {
			    
			  var campaign_width = "700";
			  var campaign_height = "450";
			  
			  var campaign_containerObj = document.createElement("div");
				  campaign_containerObj.id = "campaign";
				  campaign_containerObj.style.position = "absolute";
				  campaign_containerObj.style.top = "100px";
				  campaign_containerObj.style.left = "75px";
				  campaign_containerObj.style.width = campaign_width + "px";
				  campaign_containerObj.style.height = campaign_height + "px";
				  campaign_containerObj.style.overflow = "hidden";
				  
			  var campaign_iframeObj = document.createElement("iframe");
				  campaign_iframeObj.setAttribute("src", "/campaign/christmas");
				  campaign_iframeObj.setAttribute("frameBorder", "no");
				  campaign_iframeObj.setAttribute("border", "0");
				  campaign_iframeObj.setAttribute("marginwidth", "0");
				  campaign_iframeObj.setAttribute("marginheight", "0");
				  campaign_iframeObj.setAttribute("scrolling", "no");
				  campaign_iframeObj.allowTransparency = false;
				  campaign_iframeObj.style.width = campaign_width;
				  campaign_iframeObj.style.height = campaign_height;
				  
				  campaign_containerObj.appendChild( campaign_iframeObj );
				  document.getElementById("content").appendChild( campaign_containerObj );
		  }
		  
	  }
	  else
		    alert("Din webbläsare stödjer inte vissa viktiga funktioner som är avgörande för att denna sida ska visas.\nVar god uppgradera din webbläsare till en senare version.");

}

onload = campaign_init;

