// Search Form Validation

function validateForm(){
 var minPrice=document.forms["searchlistings"]["min"].value;
 var maxPrice=document.forms["searchlistings"]["max"].value;
 if (parseInt(minPrice) >= parseInt(maxPrice)){
	   alert("Minimum Price must be a smaller value than the Maximum Price.");
	   return false;
 /*  } else {
	  alert("Good.");   */
	}
}

