
var editorWin;


function openObjectEditor(itemId) {
  
  var w = 750;
  var h = 700;
  var editorUrl =  "/control/?a=vieweditor&i=" +itemId;
  
  //alert("openObjectEditor: editorUrl: " +editorUrl);
  

  editorWin=open(editorUrl,"11","toolbar=no,directories=no,location=yes,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" +w +",height=" +h +"");
  if (!editorWin.closed) {
    editorWin.blur();
    editorWin.focus();
  }


  
}







function preview(previewUrl) {
  //alert("opener.preview()!!");
  location.href = previewUrl;
}

