// JavaScript Document

function setSearch() {
    if(document.hsearch.radioSearch[0].checked == true)
    {
        var newLocation = 
        "http://search.jocohistory.org/cdm4/results.php?"
        + "CISOROOT=all&CISOOP1=all&CISOFIELD1=CISOSEARCHALL&CISOBOX1="
        + document.hsearch.searchfield.value;
        window.location = newLocation;
    }
    else if (document.hsearch.radioSearch[1].checked == true)
    {
        var newLocation = 
        "http://search.jocolibrary.org/search?"
        + "client=JocoLibrary&site=JocoLibrary&output=xml_no_dtd&proxystylesheet=JocoLibrary&ie=&oe=&as_sitesearch=www.jocohistory.net&q="
        + document.hsearch.searchfield.value;
        window.location = newLocation;
    }
    return false;
}
