﻿function WinOpener(link) {
    var WindowWidth = 1024;
    var WindowHeight = 560;
    var WindowLeft = Math.ceil((window.screen.width  - WindowWidth) / 2);
    var WindowTop = (window.screen.height -50- WindowHeight) / 2;
    window.open(link, "net111", "left=" + WindowLeft + ",top=" + WindowTop + ",toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + WindowWidth + ",height=" + WindowHeight + "innerWidth=" + WindowWidth + ",innerHeight=" + WindowHeight + "");
}

function WinOpener2people(link) {
    var WindowWidth = 1024;
    var WindowHeight = 560;
    var WindowLeft = Math.ceil((window.screen.width - WindowWidth) / 2);
    var WindowTop = (window.screen.height - 50 - WindowHeight) / 2;
    window.open(link, "net111", "left=" + WindowLeft + ",top=" + WindowTop + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + WindowWidth + ",height=" + WindowHeight + "innerWidth=" + WindowWidth + ",innerHeight=" + WindowHeight + "");
}
