<!-- Copyright 2003 Bontrager Connection, LLC
// See article "Changing Form Action URLs On-The-Fly" linked 
//    from URL http://willmaster.com/possibilities/archives 
//    for more information about how to use this code.
function ActionDeterminator()
{
if(document.querybox.searchchoice[0].checked == true) {
   document.querybox.action = 'http://www.google.com/u/uiuclib';
   }
if(document.querybox.searchchoice[1].checked == true) {
   document.querybox.action = 'https://i-share.carli.illinois.edu/uiu/cgi-bin/Pwebrecon.cgi';
       document.getElementById('searchbox').name = "Search_Arg";
   }
return true;
}
// -->