function ResetPageSize (strURL, intPageSize) {
	if (strURL.match (/\?/) == null) {
		self.location.href = strURL + "?PageSize=" + intPageSize;
	} else {
		self.location.href = strURL + "&PageSize=" + intPageSize;
	}
}