function goToFindProperty(theform,thePageId) {
 
  var theCategory = theform.criteria_category.value;
  var theLoc = theform.criteria_location.value;
  //var theMinPrice = theform.criteria_minprice.value;
  //var theMaxPrice = theform.criteria_maxprice.value;
  var theBedrooms = theform.criteria_bedrooms.value;
	
	
 lochref = 'index.php?pageid='+thePageId+'&filter=Search&criteria=set';

	if (theCategory != '') {	lochref += '&category=' + theCategory; }
	if (theLoc != '') {	lochref += '&location=' + theLoc; }
	//if (theMinPrice != '') {	lochref += '&minprice=' + theMinPrice; }
	//if (theMaxPrice != '') {	lochref += '&maxprice=' + theMaxPrice; }
	if (theBedrooms != '') {	lochref += '&bedrooms=' + theBedrooms; }

	location = lochref;
}
