var SEDDJwsWindow; function StartJws() { if (SEDDJwsWindow) { SEDDJwsWindow.focus(); } else { SEDDJwsWindow = window.open("/SEDDJWS/servlet/SEDDJWSServlet?step=login", "SEDD", "toolbar=no, menubar=no, titlebar=no, resizable=yes, Width=600, Height=400" + "top="+(screen.availHeight - 400) / 2+", left="+(screen.availWidth - 600) /2); } } function startSEDDJWS(url) { //alert(url); if (SEDDJwsWindow) { if (SEDDJwsWindow.closed == false) { SEDDJwsWindow.close(); } SEDDJwsWindow = null; } window.location.href = url; } function checkFocus() { //alert(SEDDJwsWindow); if (SEDDJwsWindow) { SEDDJwsWindow.focus(); } }