
		
		var domain = "recyclingbin.com"; //replace this with the domain of the site
		try    
		{
			if(document.URL.indexOf(domain) != -1 || document.URL.indexOf("shopping.netsuite.com") != -1) 
			{
					var iframeElement = document.createElement("iframe");
					iframeElement.id = "GAIframe";
					var proxyAddress = "http://shopping.netsuite.com/c.889942/site/exploreGoogleAnalyticsCart.html";    //update with checkout URL for proxy file
					iframeElement.setAttribute("src", newTracker._getLinkerUrl(proxyAddress));
					document.getElementById("GAHeaderCart").appendChild(iframeElement);
					iframeElement.style.display = "none";
			}
		}
		catch(e) {
		};
		
		
		
		
		var domain2 = "recyclingbin.com"; //replace this with the domain of the site
		try    
		{
			if(document.URL.indexOf(domain2) != -1 || document.URL.indexOf("shopping.netsuite.com") != -1) 
			{
					var iframeElement = document.createElement("iframe");
					iframeElement.id = "GAIframe";
					var proxyAddress = "https://checkout.netsuite.com/c.889942/site/exploreGoogleAnalytics.html";    //update with checkout URL for proxy file
					iframeElement.setAttribute("src", newTracker._getLinkerUrl(proxyAddress));
					document.getElementById("GAHeader").appendChild(iframeElement);
					iframeElement.style.display = "none";
			}
		}
		catch(e) {			console.log("checkout busted");
		};
		


