function goToFindPropertyQuick(theform,thePageId, thePageTitle, sefUrlStatus) {
	fileLocation = '';
	if (sefUrlStatus!='Y') {
		fileLocation = '';
	} else {
		fileLocation = '/';
	}

  var theCategory = theform.category.value;
  var theBedrooms = theform.bedrooms.value;
  var theMinPrice = theform.minprice.value;
  var theMaxPrice = theform.maxprice.value;
  //var theRef = theform.criteria_referenceno.value;
	
	if (sefUrlStatus!='Y') {
	  lochref = 'index.php?pageid='+thePageId+'&filter=Search&criteria=set&resale=Y';
	} else {
	  lochref = fileLocation+thePageTitle+'/pageid-'+thePageId+'/?filter=Search&criteria=set&resale=Y';
	}


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

	location = lochref;
}