if (window != top) top.location.href = location.href; 

function runEdit(newURL) 
	{
		var l = (screen.width-730)/2;
		var h = (screen.height-560)/2;
		myRemote = launch(newURL, "EditContent", "scrollbars=0,height=560,width=730,left="+l+",top="+h+"","HTMLEditor");
	}

function launch(newURL, newName, newFeatures, orgName) 
	{
		var remote = window.open(newURL, newName, newFeatures);
		if (remote.opener == null) remote.opener = window;
		remote.opener.name = orgName;
		return remote;
	}