// google search form submitter
function goose(){
 var qry=document.getElementById('googleTerm').value;
 if(qry=='')
  alert('Please enter a word or phrase to search for!');
 else {
  google(qry);
 }
}
function google(str){
 url = 'http://www.google.com/custom?q=' + escape(str);
 url += '&sitesearch=www.ratbike.org&client=pub-1283927625027519&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&hl=en';
 url += '&cof=GALT:%23FFFF00;GL:1;DIV:%23CCCCCC;VLC:999999;AH:center;BGC:333333;LBGC:000000;ALC:FFFFFF;';
 url += 'LC:FFFFFF;T:CCCCCC;GFNT:999999;GIMP:999999;LH:25;LW:75;L:http://ratbike.org/images/z08mbl-but.gif;';
 url += 'S:http://ratbike.org/;LP:1;FORID:1;&domains=www.ratbike.org';
 location.href = url;
}