<!--
function openWindow(Url,Title,Width,Height) {
        var extraWindow = window.open(Url,Title,'width='+Width+',height='+Height+',status=0');
        if (navigator.appName != "Microsoft Internet Explorer") {
                if (extraWindow.opener == null) {
                        // NetScape 2.0
                        extraWindow.opener = this.window;
                }
        }
}
//-->
