function NextListingSet() {
		//alert("totalListings: " + document.AForm3.txtTotalListings.value);
		totalListings = document.AForm3.txtTotalListings.value;
		thisPgNum = document.AForm3.pg.value;
		
		nxPgNum = (thisPgNum-0) + 1;
		noListingsDisplayed = (thisPgNum-0) * 50;
		noListingsRemain = (totalListings-0) - noListingsDisplayed;
		
		//keywordString = document.AForm3.txtKeywordString.value;
		//industryId = document.AForm3.txtIndustryId.value;
		//industrySegmentId = document.AForm3.txtIndustrySegmentId.value;
		//country = document.AForm3.txtCountry.value;
		//region = document.AForm3.txtRegion.value;
		pgName = document.AForm3.txtPageName.value;
				
		//price = document.AForm3.txtPrice.value;
		//cashFlow = document.AForm3.txtCashFlow.value;
		//revenue = document.AForm3.txtRevenue.value;
		//ascDesc = document.AForm3.txtAscDesc.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;
			
			/**Modified for search results display*/
			//window.location.href=pgName+"?pg=" + nxPgNum;
			document.AForm3.pg.value = nxPgNum;
			document.AForm3.submit();
			/**Modified for search results display***/
						
		}
		else{
			alert("There are no more listings.");
		}						

}

function PrevListingSet(){
		thisPgNum = document.AForm3.pg.value;
		prevPgNum = (thisPgNum-0) - 1;
		
		//country = document.AForm3.txtCountry.value;
		//region = document.AForm3.txtRegion.value;
		pgName = document.AForm3.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;
						
			/**Modified for search results display*/
			//window.location.href=pgName+"?pg=" + prevPgNum;
			document.AForm3.pg.value = prevPgNum;
			document.AForm3.submit();
			/**Modified for search results display***/			
		}
		else{
			alert("There are no previous listings.");
		}
}

