function goToPage(page) { document.forms.propertySearchForm.event.value="paging"; document.forms.propertySearchForm.currentPage.value=page; document.forms.propertySearchForm.submit(); } function changeResultsPerPage(perPage) { document.forms.propertySearchForm.event.value="paging"; document.forms.propertySearchForm.resultsPerPage.value=perPage; document.forms.propertySearchForm.currentPage.value=1; document.forms.propertySearchForm.submit(); } function bookNow(propertyId) { document.forms.bookRequestForm.propertyId.value=propertyId; document.forms.bookRequestForm.submit(); }