function pagergo(tmple, offs)
{
	var curloc = "" + window.location;
	var re = new RegExp("([&?]tmpleo=([0-9]*,[0-9]*,)*)" + tmple + ",[0-9]*((,[0-9]*,[0-9]*)*)");
	if ( curloc.match(re) )
	{
		curloc = curloc.replace(re, "$1" + tmple + "," + offs + "$3")
	}
	else
	{
		if ( curloc.indexOf('?') == -1 )
		{
			curloc += "?tmpleo=" + tmple + "," + offs;
		}
		else
		{
			curloc += "&tmpleo=" + tmple + "," + offs;
		}
	}
	// window.alert(curloc);
	window.location = curloc;
}
