function urlencode(str) { return escape(str).replace(/\+/g,'%2B').replace(/%20/g, '+').replace(/\*/g, '%2A').replace(/\//g, '%2F').replace(/@/g, '%40'); } function search(form) { if (document.pressed == 'Google') window.location = 'http://www.google.com/search?hl=en&q='+urlencode(form.string.value)+'&btnG=Google+Search\n\n'; if (document.pressed == 'Wikipedia') window.location = 'http://en.wikipedia.org/wiki/Special:Search?search='+urlencode(form.string.value)+'&go=Go\n\n'; if (document.pressed == 'Amazon') window.location = 'http://www.amazon.com/s/?field-keywords='+urlencode(form.string.value)+'&tag=walsranfes08-20\n\n'; if (document.pressed == 'eBay') window.location = 'http://www.ebay.com/sch/i.html?_nkw='+urlencode(form.string.value)+'&category0=\n\n'; if (document.pressed == 'YouTube') window.location = 'http://youtube.com/results?search_query='+urlencode(form.string.value)+'&search_type=&aq=f\n\n'; if (document.pressed == 'Dictionary') window.location = 'http://dictionary.reference.com/search?q='+urlencode(form.string.value)+'\n\n'; return false; }