var d4crtimer;
function d4checkResize() {
	if(location.hash.match(/_tb(\d+)/)) {
		document.getElementById("toolbox-content-iframe").style.height = RegExp.$1 + "px";
		//clearInterval(d4crtimer);
		location.href = location.href.replace(/#.*/, "#");
	}
}
d4crtimer = setInterval(d4checkResize, 200);

function toolboxInclude(toolboxServer, uri, alwaysSecure) {
	uri = uri.replace(/((?:\/[^\/]*)*)(\/)(.*)/, "$1/--integraationakyma_clean$3");
	uri += (uri.indexOf('?')==-1) ? '?' : '&';
	uri += 'RESIZER_URL=' + encodeURIComponent(location.href.replace(/#.*/, ""));
	
	var server;
  server = 'http://' + toolboxServer;  
	var src = server + '/mp/static/integraatioRedir.html?GOTO=' + encodeURIComponent(uri);
	
	document.write('<iframe id="toolbox-content-iframe" style="border: 0; padding: 0; margin: 0;" name="toolbox-content-iframe" src="' + src + '" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="auto" width="100%" height="400"></iframe>');
}


