function frmSearch_onSubmit(theForm) {
  theForm.querystring.value = theForm.querystring.value.toString().replace(/^ *(.*)/,"$1");
  theForm.querystring.value = theForm.querystring.value.toString().replace(/([^ ]) +$/,"$1");
  theForm.querystring.value = theForm.querystring.value.toString().replace(/ /g,'+');
  if (theForm.querystring.value != '') return true;
  alert('Please enter some text and try your search again.');
  return false;
}

var action = "";

if (params.lang=='en')
    action="http://www.fao.org/ag/locusts/en/info/info/query_en.html";
if (params.lang=='ar')
    action="http://www.fao.org/ag/locusts/ar/info/info/query_ar.html";
if (params.lang=='fr')
    action="http://www.fao.org/ag/locusts/fr/info/info/query_fr.html";

window.document.writeln('<form action="'+action+'" id="cse-search-box">');
window.document.writeln('<table cellspacing="5" cellpadding="0" border="0" style="margin-'+params.reverseTextAlign+':0px; margin-'+params.generalTextAlign+':auto;">');
window.document.writeln('<tr valign="baseline">');
    window.document.writeln('<input type="hidden" name="cx" value="007350241502790175824:ugyozibmso0" />');
    window.document.writeln('<input type="hidden" name="cof" value="FORID:10" />');
    window.document.writeln('<input type="hidden" name="ie" value="UTF-8" />');
    window.document.writeln('<td class="topsearch"><input type="text" name="q" size="31" /></td>');
    window.document.writeln('<td><input type="submit" name="sa" value="Search" /></td>');
  window.document.writeln('<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>');
window.document.writeln('</tr>');
window.document.writeln('</table>');
window.document.writeln('</form>');
