NS:
<script>
function openEditor()
{
  var strUrlToOpen = ""
  var props = "top=0,left=0,scrollbars=1,resizable,width=" + (window.screen.width - 4 ) + ",height=" + (window.screen.height - 23);
  var win = window.open(strUrlToOpen,"",props);
  win.moveTo(-4,-4)
}
openEditor()
</script>