function openWin (file, nam, w, h) {
  win = window.open(file, nam, "width=" + w + ",height=" + h + ",left=100,top=100");
  win.focus();
}