  function Search()
  {
    var minbeds, minprice, maxprice, department, location
    minbeds = document.getElementById("MinBeds").value
    minprice = document.getElementById("MinPrice").value
    maxprice = document.getElementById("MaxPrice").value
    department = document.getElementById("Department").value
    location = document.getElementById("Location").value

    document.location="PropertyQuickSearch.asp?dep=" + department + "&minbeds=" + minbeds + "&minprice=" + minprice + "&maxprice=" + maxprice + "&location=" + location
  }
