// Scope Search Radio Button Switch. Allows you to select the scope of the search based on radio buttons.
function formaction( str )
{
    switch( str )
    {   
        case "bsu":
        document.search.action = 'http://www.boisestate.edu/search/';
        break;
       
        case "hs":
        document.search.action = 'http://hs.boisestate.edu/searchprocess.asp';
        break;
      
    }
}