﻿var win = null;
var ScreenWidth = null;
var ScreenHeight = null;

function openWindow(mypage, myname) {
    { ScreenWidth = 885 }
    { ScreenHeight = 700 }
    var TopPosition = (screen.height) ? ((screen.availHeight - ScreenHeight) / 2) - 15 : 0;
    var LeftPosition = (screen.width) ? (screen.availWidth - ScreenWidth) / 2 : 0;
    settings = "height=" + ScreenHeight + ",width=" + ScreenWidth + ",top=" + TopPosition + ",left=" + LeftPosition + ",toolbar=no,titlebar=yes,directories=no,fullscreen=no,status=no,scrollbars=yes,resizable=yes,menubar=no"
    win = window.open(mypage, myname, settings)
    win.window.focus();
}

function smallWindow(mypage, myname) {
    { ScreenWidth = 670 }
    { ScreenHeight = 510 }
    var TopPosition = (screen.height) ? ((screen.availHeight - ScreenHeight) / 2) - 15 : 0;
    var LeftPosition = (screen.width) ? (screen.availWidth - ScreenWidth) / 2 : 0;
    settings = "height=" + ScreenHeight + ",width=" + ScreenWidth + ",top=" + TopPosition + ",left=" + LeftPosition + ",toolbar=no,titlebar=yes,directories=no,fullscreen=no,status=no,scrollbars=yes,resizable=yes,menubar=no"
    win = window.open(mypage, myname, settings)
    win.window.focus();
}
