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';
  //lochref = '' + this.location;

	//if (theRef != '') {
	//	lochref += '&ref=' + theRef;
	//} else {
		if (theCategory != '') {	lochref += '&category=' + theCategory; }
		if (theLoc != '') {	lochref += '&location=' + theLoc; }
		if (theMinPrice != '') {	lochref += '&minprice=' + theMinPrice; }
		if (theMaxPrice != '') {	lochref += '&maxprice=' + theMaxPrice; }
		if (theBedrooms != '') {	lochref += '&beds=' + theBedrooms; }
	//}

//  lochref = 'index.php' + location;
	
	//alert("The values are: "+theLoc+" "+theType+" "+theMinPrice+" "+theMaxPrice+" "+theRef+"The url is: "+lochref);
	location = lochref;
}
