var winModalWindow

function IgnoreEvents(e)
{
return false
}

function ShowWindow()
{
if (window.showModalDialog)
{
window.showModalDialog("msg.html",null,
"dialogWidth=400px; dialogHeight=200px; help: No; resizable: No; status: No;")
}
else
{
window.top.captureEvents (Event.CLICK|Event.FOCUS)
window.top.onclick=IgnoreEvents
window.top.onfocus=HandleFocus 
winModalWindow = 
window.open ("msg.html","msg",
"dependent=yes,width=400,height=200")
winModalWindow.focus()
}
}


function HandleFocus()
{
if (winModalWindow)
{
if (!winModalWindow.closed)
{
winModalWindow.focus()
}
else
{
window.top.releaseEvents (Event.CLICK|Event.FOCUS)
window.top.onclick = ""
}
}
return false
}
