﻿function doSearch(searchBoxID) {
    var searchBox = document.getElementById (searchBoxID);
    window.location.href = "/Common/Search.aspx?strSearchString=" + searchBox.value
    return false;
}
