// JavaScript Document

<!--CARLweb quick search-->

function doSearch(theform)
{
 text = theform.wf_term1.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");

 document.location='http://catalog.ccclib.org/?q='
	+ text.replace(/ /g,"%20");
 return false;
}

function dositeSearch(theform)
{
 text = theform.wf_term1.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");

 document.location='http://www.google.com/cse?cx=007876068985949402463:hlnpkjbc94i&ie=UTF-8&q='
	+ text.replace(/ /g,"%20");
 return false;
}

function dowebSearch(theform)
{
 text = theform.wf_term1.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");

 document.location='http://www.google.com/custom?q='
	+ text.replace(/ /g,"%20");
 return false;
}

