var winModalWindow
 
function IgnoreEvents(e)
{
  return false
}
 
function ShowWindow(url, w, h)
{
  
  if (window.showModalDialog)
  {
    winModalWindow=window.open (url,"ModalChild",
       "alwaysRaised=yes,dialog=yes,dependent=yes,width=" + w + ",height=" + h + ",scrollbars=yes")
//    window.showModalDialog(url,null,
//    "dialogWidth=" + w + "px;dialogHeight=" + h + "px")
    
  }
  else
  {
   
    window.top.captureEvents (Event.CLICK|Event.FOCUS)
    //window.top.onclick=IgnoreEvents
    //window.top.onfocus=HandleFocus 
    winModalWindow = 
    window.open (url,"ModalChild",
       "alwaysRaised=yes,dialog=yes,dependent=yes,width=" + w + ",height=" + h  + ",scrollbars=yes")

    
  }

  winModalWindow.focus()
  
}

 
function HandleFocus()
{
  if (winModalWindow)
  {
    if (!winModalWindow.closed)
    {
      winModalWindow.focus()
    }
    else
    {
      window.top.releaseEvents (Event.CLICK|Event.FOCUS)
      window.top.onclick = ""
    }
  }
  return false
}

