<!-- WEB SEARCH --> <!-- This goes in the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2001, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- function searchWeb() { if (document.search.engines.selectedIndex==0) { window.location.href="http://uk.altavista.com/web/results?pg=q&what=web&fmt=.&q="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==1) { window.location.href="http://www.ask.com/main/askjeeves.asp?x=22&y=13&ask="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==2) { window.location.href="http://www.infospace.com/dog/redir.htm?&qkw="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==3) { window.location.href="http://www.google.com/search?btnG=Google+Search&q="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==4) { window.location.href="http://www.hotbot.com/default.asp?prov=Fast&tab=web&query="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==5) { window.location.href="http://www.looksmart.com/r_search?look=&key="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==6) { window.location.href="http://search.lycos.com/?query="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==7) { window.location.href="http://search.metacrawler.com/texis/search?brand=metacrawler&q="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==8) { window.location.href="http://www.overture.com/d/search/?type=home&tm=1&Keywords="+document.search.queryText.value.replace(" ","+"); } if (document.search.engines.selectedIndex==9) { window.location.href="http://search.yahoo.com/search?p="+document.search.queryText.value.replace(" ","+"); } } // --> </script> <!-- This goes in the BODY of the html file --> <form name="search"> <table bgcolor="c0c0c0" height="50"> <tr> <td>&nbsp; <select name="engines" style="font-size: 9pt"> <option value="0" selected>AltaVista</option> <option value="1">Ask Jeeves</option> <option value="2">InfoSpace</option> <option value="3">Google</option> <option value="4">HotBot</option> <option value="5">LookSmart</option> <option value="6">Lycos</option> <option value="7">MetaCrawler</option> <option value="8">Overture</option> <option value="9">Yahoo!</option> </select> <input type="text" size="25" value="Search web for ..." onFocus=select(); name="queryText" style="font-size: 9pt" /> <input type="button" value="Go" onClick="searchWeb()" style="font-size: 9pt" />&nbsp; </td> </tr> </table> </form>