function xWinOpen(sUrl)
{
  var features = "left=0,top=0,width=600,height=310,location=0,menubar=0," +
    "resizable=0,scrollbars=0,status=0,toolbar=0";
  if (xChildWindow && !xChildWindow.closed) {xChildWindow.location.href = sUrl;}
  else {xChildWindow = window.open(sUrl, "myWinName", features);}
  xChildWindow.focus();
  return false;
}
