﻿
function initPeopleSearch() {
    // get and set default view and term
    var q = new Querystring();
    var searchTerm = q.get('q');
    if (searchTerm != null) {
        $('people_txt').value = searchTerm;
    }
    changeSearchType('people',$('people_link'));
}
