I wasn't sure what to call it, so sorry I got it wrong.
I am poping up a window with javascript and I thought that this would make it lock the browser until the window was closed.
here is the script. I thought the dependent would do it.
function bareWindow(a_str_windowURL, a_str_windowName, a_int_windowWidth, a_int_windowHeight)
{
var int_windowLeft = (screen.width - a_int_windowWidth) / 2;
var int_windowTop = (screen.height - a_int_windowHeight) / 2;
var str_windowProperties='height='+a_int_windowHeight+',width='+a_int_windowWidth+',top='+int_windowTop+',left='+ int_windowLeft+',scrollbars=no,resizable=no,menubar=no,toolbar=no,location=no,directories= no,status=no,fullscreen=no,dependent=yes,channelmode=no';
var obj_window = window.open(a_str_windowURL, a_str_windowName, str_windowProperties)
// if (parseInt(navigator.appVersion) >= 4) {
// obj_window.window.focus();
// }
}
Thanks
Dave