﻿// JScript source code
function newPopPage(sLink, sPageId, nWidth, nHeight)
{
	var nLeft = (window.screen.width / 2) - (nWidth / 2 + 10);
	var nTop  = (window.screen.height / 2) - (nHeight / 2 + 50);
	var winNew = window.open(sLink, sPageId, "width=" + nWidth + ",height=" + nHeight + ",left=" + nLeft + ",top=" + nTop + ",scrollbars=yes,resizable=yes");
	winNew.focus();
}

function newPopPageXX(sLink, sPageId, nWidth, nHeight)
{
	window.location.href=sLink;
}

