function goToFindProduct(theform,thePageId) {
  var thePrdCategory = theform.category.value;
  var theType = theform.type.value;
  var theBrand = theform.brand.value;
	
  lochref = 'index.php?pageid='+thePageId+'&filter=Search&criteria=set';
  //lochref = '' + this.location;

	//if (theRef != '') {
	//	lochref += '&ref=' + theRef;
	//} else {
		if (thePrdCategory != '') {	lochref += '&category=' + thePrdCategory; }
		if (theType != '') {	lochref += '&type=' + theType; }
		if ((theBrand != '')&&(theBrand != 'Brand')) {	lochref += '&brand=' + theBrand; }
	//}

//  lochref = 'index.php' + location;
	
	//alert("The values are: "+theLoc+" "+theType+" "+theMinPrice+" "+theMaxPrice+" "+theRef+"The url is: "+lochref);
	location = lochref;
}

function ClearField(theForm) {
	var theFieldValue = theForm.brand.value;
	if (theFieldValue == 'Brand') {
			theForm.brand.value = '';
	}
}