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

