
function createTrackingIframe (url, iframeName) {
	try{
		var iframe;
		var sProtocol = document.location.protocol;
		if (document.createElement && (iframe = document.createElement('iframe'))) {
			if (iframeName)
				iframe.name = iframe.id = iframeName;
				
			iframe.width = 1;
			iframe.height = 1;
			iframe.scrolling = "no";
			iframe.marginHeight = 1;
			iframe.marginWidth = 1;
			iframe.frameborder = 0;
			iframe.src = (sProtocol == "https:" ? "https://" : "http://") + url;
			document.body.appendChild(iframe);
		}
		return iframe;
	}catch(e){
		;
	}
}

try {
	if (typeof(_bCallFetchbackOnLoad ) == "undefined" || _bCallFetchbackOnLoad == null || _bCallFetchbackOnLoad == true)
		createTrackingIframe("pixel.fetchback.com/serve/fb/pdc?cat=&name=landing&sid=" + FB_HOMEPAGE_ACCT_ID, "iframeFetchbackPageTracking");
} catch(e) {
	;
}

// END Fetchback Pixel
