

// check if page is loaded in popup, which is not allowed
function checkToolboxWindow() {
	if(parent.opener) {
		parent.opener.location.href = parent.location.href;
		parent.opener.focus();
		parent.close();
	}
}