function runEdit(newURL) 
{
var l = (screen.width-730)/2;
var h = (screen.height-560)/2;
myRemote = launch(newURL, "EditContent", "height=560,width=730,left="+l+",top="+h+"","HTMLEd");
}

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;
}
