function fNewWindow (str_Url, str_WindowName, int_WindowWidth, int_WindowHeight, int_IsScrollBar) { var int_WindowLeft = (screen.availWidth - int_WindowWidth) / 2; var int_WindowTop = (screen.availHeight - int_WindowHeight) / 4; window.open(str_Url, str_WindowName, 'width=' + int_WindowWidth + ', height=' + int_WindowHeight + ', left=' + int_WindowLeft + ', top=' + int_WindowTop + ', location=0, menubar=0, resizable=1, scrollbars=' + int_IsScrollBar + ', alwaysRaised') }