function PopUpWindow(url)
{
if (typeof(popUpManager) != "undefined")
	{
		popUpManager.WindowOpen('NewWin', url, 'newWin', 'status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,width=780,height=550,left=10,top=10');
	}
}
function CalcPopUpWindow(name, url)
{
	if (typeof(popUpManager) != "undefined")
	{
		popUpManager.WindowOpen(name, url, name, 'status=no,scrollbars=yes,resizable=yes,toolbar=no,location=no,width=450,height=400,left=10,top=10');
	}
}
function PopUpSmallWindow(url) {
    if (typeof (popUpManager) != "undefined") {
        popUpManager.WindowOpen('NewWin', url, 'newWin', 'status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,width=625,height=325,left=10,top=10');
    }
}