// JavaScript Document
function	NextList(_Page,manager_file)
{
	if (_Page=="Goto")
	{
		x	=	parseInt(document.frmSelectPage.AbsolutePage.value);
		if (isNaN(x))
		{
			alert("Please enter a numeric value");
			document.frmSelectPage.AbsolutePage.select();
			return;
		}
		else
		{
			document.frmSelectPage.AbsolutePage.value=x;
		}
	}
	else
	{
		document.frmSelectPage.AbsolutePage.value	=	_Page;
	}
//	document.frmSelectPage.hidOrderType.value	=	"GotoPage";
	document.frmSelectPage.action	=	manager_file;
	document.frmSelectPage.submit();
}