
function clicked(form){
	var text = '';
	form = document.form1;
	text = form.text1.value;
	var sURL = "";
        for (var i=0;i<(text.length);i++)
        {
                if(text.charAt(i) == '"' || text.charAt(i) =="'")
                        ;
                else if(text.charAt(i) == " ")
                        sURL = sURL + "+";
                else
                        sURL = sURL + text.charAt(i);
        }
        text = sURL;
	if (text == ""){
		return false;
	}
	if(form.select1[ form.select1.selectedIndex].value == "0")
	{
		alert("Please select the search engine from the drop down box");
		return false;
	}
	else if(form.select1[form.select1.selectedIndex].value == "1"){
		location="http://search.yahoo.com/bin/search?p=" + text;
	}
	else if(form.select1[form.select1.selectedIndex].value == "2"){
		location="http://www.google.com/search?q=" + text;
	}
	else if(form.select1[form.select1.selectedIndex].value == "3"){
		location="http://www.altavista.digital.com/cgi-bin/query?pg=q&what=web&kl=en&q=" + text;
	}
	else if(form.select1[form.select1.selectedIndex].value == "4"){
		location = "http://www.webcrawler.com/cgi-bin/WebQuery?search=" + text;
	}
	else if(form.select1[form.select1.selectedIndex].value == "5"){
		location = "http://www.infoseek.com/Titles?qt=" + text
	}
	else if(form.select1[form.select1.selectedIndex].value == "6"){
		location = "http://www.lycos.com/cgi-bin/pursuit?query=" + text
	}
	else if(form.select1[form.select1.selectedIndex].value == "7"){
		location = "http://search.excite.com/search.gw?search=" + text
	}
	else if(form.select1[form.select1.selectedIndex].value == "8"){
		location = "http://www.hotbot.com/?MT=" + text
	}
	else if(form.select1[form.select1.selectedIndex].value == "9"){
		location = "http://www.looksmart.com/r_search?key=" + text
	}
	else if(form.select1[form.select1.selectedIndex].value == "10"){
		location = "http://www.snap.com/search/directory/results/1,61,home-0,00.html?keyword=" + text
	}
	else if(form.select1[form.select1.selectedIndex].value == "11"){
		location = "http://netfind.aol.com/search.gw?search=" + text + "&lk=excite_netfind2_us&nrm=n&pri=on&xls=b"
	}
	return false;
}