function awOpenHelp(sLink, iW, iH) { var iMyWidth = (window.screen.width/2) - (iW/2 + 10); //half the screen width minus half the new window width (plus 5 pixel borders). var iMyHeight = (window.screen.height/2) - (iH/2 + 50); //half the screen height minus half the new window height (plus title). var hwin = window.open(sLink,"Help","toolbar=1,status=0,height="+iH+",width="+iW+",resizable=1,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=1"); hwin.focus(); }