function open_window(url, h, w, name)
{
  if (name == '') name = "win" ;
  window.open(url, name, "height="+h+",width="+w+",directories=no,location=no,menubar=no," +
                   "resizable=1,status=no,toolbar=no,scrollbars=yes");
  return ;
}

