﻿// JScript File
function OpenNewWindow(URL,Width,Height) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,top=25,left=25,width=" + Width +",height=" + Height + "');");
}

function OpenNewScrollWindow(URL,Width,Height) {
	day = new Date();
	id = day.getTime();

	var centerWidth = (window.screen.width - Width) / 2;
	var centerHeight = (window.screen.height - Height) / 2;

	var popW = Width, popH = Height;
    var leftPos = centerWidth;
    var topPos = centerHeight;

    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + popW+',height='+popH+',top='+topPos+',left='+leftPos + "');");

}

function CloseUpdateParent(bUpdate){
	window.opener.location = window.opener.location;
	window.close();
}

function CloseRedirectParent(URL){
	window.opener.location.href = URL;
	window.close();
}

function ServerInfoOver()
{
    document.getElementById('serverinfo').style.visibility = "visible";
}

function ServerInfoOut()
{
    document.getElementById('serverinfo').style.visibility = "hidden";
}