if (!inCMS() && /\..*\./.test(document.domain)) {
	document.domain = document.domain.replace(/^\w+\./, "");
}

function handleIframe() {
	var iframe = document.getElementById("iframe");
	iframe.onload = setIframeHeight;
}

function setIframeHeight() {
	var iframe = document.getElementById("iframe");
    if (iframe.contentDocument && iframe.contentDocument.body.offsetHeight) { //ns6 syntax
    	iframe.height = iframe.contentDocument.body.offsetHeight+16; 
    } else if (iframe.Document && iframe.Document.body.scrollHeight) { //ie5+ syntax
    	iframe.height = iframe.Document.body.scrollHeight;
	}  
}

