  function OpenWin(path, width, height) {
    win = window.open(path, 'miniwin', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, copyhistory=no, sizeable=yes, width='+width+' ,height='+height+'');
    win.focus();
  }