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=yes,status=no,toolbar=no,scrollbars=yes");
  return ;
}
