function NextListingSet() {
		totalListings = document.AForm.txtTotalListings.value;
		thisPgNum = document.AForm.txtThisPgNum.value;
		nxPgNum = (thisPgNum-0) + 1;
		noListingsDisplayed = (thisPgNum-0) * 50;
		noListingsRemain = (totalListings-0) - noListingsDisplayed;
		
		country = document.AForm.txtCountry.value;
		region = document.AForm.txtRegion.value;
		pgName = document.AForm.txtPageName.value;
		
		if (noListingsRemain > 0){

			//window.location.href="california-commercial-real-estate-for-sale.asp?keywordStr=" + keywordString + "&indId=" + industryId + "&indSegId=" + industrySegmentId + "&country=" + country + "&region=" + region + "&pg=" + nxPgNum;
			//window.location.href="california-commercial-real-estate-for-sale.asp?country=" + country + "&region=" + region + "&pg=" + nxPgNum;
			window.location.href=pgName+"?country=" + country + "&region=" + region + "&pg=" + nxPgNum;
		}
		else{
			alert("There are no more listings.");
		}
}

function PrevListingSet(){
		thisPgNum = document.AForm.txtThisPgNum.value;
		prevPgNum = (thisPgNum-0) - 1;
		
		country = document.AForm.txtCountry.value;
		region = document.AForm.txtRegion.value;
		pgName = document.AForm.txtPageName.value;
				
		if (thisPgNum > 1){
			//window.location.href="california-commercial-real-estate-for-sale.asp?keywordStr=" + keywordString + "&indId=" + industryId + "&indSegId=" + industrySegmentId + "&country=" + country + "&region=" + region + "&pg=" + prevPgNum;
			window.location.href=pgName+"?country=" + country + "&region=" + region + "&pg=" + prevPgNum;
		}
		else{
			alert("There are no previous listings.");
		}
}