﻿function GoPage(step)
{
	if (typeof (pageNo) == "undefined")
		return;
	var tempPage = pageNo + step;
	if (tempPage < 1)
		tempPage = 1;
	else
	{
		if (tempPage > sumPage)
			tempPage = sumPage;
	}
	window.location = urlForPageNo + tempPage;
}
