<!-- 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/concordiamoorhead';
 document.getElementById('searchbox').name = "q";
   }
if(document.querybox.searchchoice[1].checked == true) {
   document.querybox.action = 'http://mnpals.cord.edu/F/';
       document.getElementById('searchbox').name = "request";
   }
return true;
}
// -->