  var w;
  var h;
  var _px;
  var _py;
  var winWindow;
function newOpen(path,w,h){
  _px=(screen.width-w)/2;
  _py=(screen.height-h)/2;
  if(!(winWindow==null)) { if(!winWindow.closed) winWindow.close() } else {};
      winWindow = open(path,"win","toolbar=no,location=no,directories=no,"+
      "status=no,scrollbars=no,resizable=no,"+
      "copyhistory=no,width="+w+",height="+h+",top="+_py+",left="+_px);
}

function nwhref(href){
  setTimeout('winWindow.IFrame.location.href=\''+href+'\';',200);
}