var objWindow function doShowSubWindowFrame(strURL) { var params; params = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=600" objWindow = window.open(strURL, "win", params) } function doShowMapWindow(strURL) { var params; params = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=780,height=" if (arguments.length == 2) { // The second parameter is an optional height value... params = params + arguments[1]; } else { // Use a default height instead... params = params + "400"; } objWindow = window.open(strURL, "win", params) } function doShowSubWindow(strURL) { var params; params = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=640,height=" if (arguments.length == 2) { // The second parameter is an optional height value... params = params + arguments[1]; } else { // Use a default height instead... params = params + "575"; } objWindow = window.open(strURL, "win", params) } function doShowFaxWindow(strURL) { var params; params = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=750,height=675" objWindow = window.open(strURL, "win", params) } function doShowSVGHelpSubWindow(strURL) { var params; params = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=775,height=" if (arguments.length == 2) { // The second parameter is an optional height value... params = params + arguments[1]; } else { // Use a default height instead... params = params + "575"; } objWindow = window.open(strURL, "win", params) } function doShowPrintWindow(strURL) { var params; params = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=650,height=400" if (arguments.length == 2) { // The second parameter is an optional height value... params = params + arguments[1]; } else { // Use a default height instead... params = params + "575"; } objWindow = window.open(strURL, "win", params) } function doCloseSubWindow() { var type; type = typeof objWindow; //alert ("Debug: type = " + type); if ((type != "undefined") && (objWindow != null)) { if (!objWindow.closed) { objWindow.close(); } } } // Pop-up dialogue for cancel buttons function do_confirm (screen1,screen2,message) { if (confirm(message)) location.replace(screen1); //else //return true; // location.replace(screen2); } // Pop-up dialogue for logout buttons function do_logout (screen1,screen2,message) { if (confirm(message)) location.replace(screen1); //else //return true; // location.replace(screen2); }