<!--
function popup(FileName,WinWidth,WinHeight)
{
	var ReportWinodw;
	var MessageNumber;
	var MaxMessageNumber;
	var WinTop;
	var WinLeft;

	WinTop= (window.screen.height / 2) - (WinHeight / 2);
	WinLeft=  (window.screen.width / 2) - (WinWidth / 2);
	ReportWinodw=window.open(FileName,'Message','top=' + WinTop + ',left=' + WinLeft + ',height=' + WinHeight + ',width=' + WinWidth + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
	ReportWinodw.focus();
}
