﻿function ShowStaticPopup(targetHref, targetTitle, startWidth, startHeight, isResizeable) {
    var left = (window.screen.width - startWidth) / 2;
    var top = (window.screen.height - startHeight) / 2;

    var staticWindow = window.open(targetHref, targetTitle, "width=" + startWidth + ",height=" + startHeight + ",resizable=" + isResizeable + ",left=" + left + ",top=" + top + ",scrollbars=1");
    staticWindow.focus();
}