function doSearch(theForm) {
 text = theForm.query.value;
 text = text.replace(/%/g,"%25");
 text = text.replace(/\\+/g,"%2B");
 text = text.replace(/\\&/g,"%26");
 text = text.replace(/=/g,"%3D");
 text = text.replace(/#/g,"%23");
 text = text.replace(/ /g,"%20");
 text.replace(/ /g,"%20");
 window.location='http://snapweb.snap.lib.ca.us/cgi-bin/cw_cgi?10000+REDIRX+useDatabase_240_w_'+text;
 return false;
}

