﻿// Redirects the user to the same page with the search querystring appended.
RedirectSearch = function() {
    var txtSearch = getElementObject('txtSearch');
    window.location = '?Search=' + txtSearch.val();
}

