function goToFindProperty(theform,thePageId,thePageTitle, sefUrlStatus) {
	fileLocation = '';
	if (sefUrlStatus!='Y') {
		fileLocation = '';
	} else {
		fileLocation = '/';
	}
 
  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 theCountry = theform.criteria_country.value;
	
	
	if (sefUrlStatus!='Y') {
		lochref = 'index.php?pageid='+thePageId+'&filter=Search&criteria=set';
	} else {
	  lochref = fileLocation+thePageTitle+'/pageid-'+thePageId+'/?filter=Search&criteria=set';
	}

	if (theCategory != '') {	lochref += '&category=' + theCategory; }
	if (theLoc != '') {	lochref += '&loc=' + theLoc; }
	if (theMinPrice != '') {	lochref += '&minprice=' + theMinPrice; }
	if (theMaxPrice != '') {	lochref += '&maxprice=' + theMaxPrice; }
	if (theCountry != '') {	lochref += '&country=' + theCountry; }

	location = lochref;
}
