﻿
function OpenWindow(url, width, height)
{
    var popupWidth = width;
    var popupHeight = height;
    var PopupLeft = (screen.width - popupWidth) / 2;
    var PopupTop = (screen.height - popupHeight) / 2;
    window.open(url, "StopWindowRepeat", "menubar=0,toolbar=0,top=" + PopupTop + ",left=" + PopupLeft + ",location=0,status=1, title='window',scrollbars=0,resizable=0,width=" + popupWidth + ",height=" + popupHeight + "");   
}

