function Win(Href, w, h) {
  if(w < 120) w = 160;
  else w = w * 1 + 40;
  if(h < 120) h = 150;
  else h = h * 1 + 50;
  if(w > 750 || h > 550) win = window.open(Href,"win","width=" + w + ",height=" + h + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top=10,left=100");
  else win = window.open(Href,"win","width=" + w + ",height=" + h + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,top=10,left=100");
  win.focus();
}

function ClearWin() {
  window.close();
}
