function gosearch() {
w=document.searchit.engine.selectedIndex;
t = document.searchit.term.value;
s=escape(t);
if (w==-1 | w==0) {
g='http://altavista.digital.com/cgi-bin/query?what=web&q='+s;
}
if (w==1) {
g='http://search.excite.com/search.gw?trace=1&search='+s;
}
if (w==2) {
g='http://www.hotbot.com/?MT='+s;
}
if (w==3) {
g='http://www.infoseek.com/Titles?qt='+s;
}
if (w==4) {
g='http://www.looksmart.com/r?key='+s+'&search=1';
}
if (w==5) {
g='http://search.dejanews.com/dnquery.xp?QRY='+s;
}
if (w==6) {
g='http://home.snap.com/search/directory/results/1,61,home-0,00.html?keyword='+s;
}
if (w==7) {
g='http://search.yahoo.com/bin/search?p='+s+'&a=n';
}
if (w==8) {
g='http://www.wunderground.com/search.asp?search='+s+'&start=0';
}
setTimeout("location=g;", 100);
}
