function gotopage(topage){
	location.href= topage;
}

function checkOffset(offset,pageNum){
	if(offset < 0){
		alert("已经是第一页了！");
		return false;
	}
	if(offset >= pageNum){
		alert("已经是最后一页了！");
		return false;
	}
	return true;
}