﻿function OpenWindow(address, heigth, width, title) {
    var winl = (screen.width - width) / 2;
    var wint = (screen.height - heigth) / 2;
    var options = "width=" + width;
    options += ",height=" + heigth;
    options += ",top=" + wint;
    options += ",left=" + winl;
    options += ",location=no,toolbar=no, menubar=no, scrollbars=0, resizable";
    window.open(address, title, options);
}

