<!--
function jump()
{
location=document.frmjump.cboparent.options[document.frmjump.cboparent.selectedIndex].value
}

function cleartext()
{
document.frmsearch.txtsearch.value = ""
}

function txtsearch()
{
location.href="http://www.google.com/search?hl=en&q=" + escape(document.form1.q.value) + "&btnG=Google+Search"
}

function grpsearch()
{
location.href="http://groups.google.com/groups?hl=en&q=" + escape(document.form1.q.value) + "&btnG=Google+Search"
}

function imgsearch()
{
location.href="http://images.google.com/images?num=20hl=en&q=" + escape(document.form1.q.value) + "&btnG=Google+Search"
}

function search()
{
switch(document.frmHHSearch.cbosearch.options[document.frmHHSearch.cbosearch.selectedIndex].value) {
	
	case 'Metacrawler':
		location.href="http://search.metacrawler.com/crawler?general=" + escape(document.frmHHSearch.txtwebsearch.value) + "&method=0&redirect=&rpp=20&hpe=10&region=0&timeout=0&sort=0&theme=classic"
		break;
	case 'Ask Jeeves':
		location.href="http://www.askjeeves.com/main/askjeeves.asp?ask=" + escape(document.frmHHSearch.txtwebsearch.value) + "&o=0"
		break;
	case 'Dogpile':
		location.href="http://search.dogpile.com/texis/search?q=" + escape(document.frmHHSearch.txtwebsearch.value) + "&geo=no&fs=web"
		break;
	case 'Lycos':
		location.href="http://search.lycos.com/main/default.asp?lpv=1&loc=searchbox&query=" + escape(document.frmHHSearch.txtwebsearch.value) + "&x=7&y=7"
		break;
	case 'Excite':
		location.href="http://search.excite.com/search.gw?c=web&search=" + escape(document.frmHHSearch.txtwebsearch.value)
		break;
	case 'Yahoo!':
		location.href="http://search.yahoo.com/bin/search?p=" + escape(document.frmHHSearch.txtwebsearch.value)
		break;
	case 'Google':
		location.href="http://www.google.com/search?q=" + escape(document.frmHHSearch.txtwebsearch.value)
		break;
	case 'Overture':
		location.href="http://www.overture.com/d/search/?type=home&tm=1&Keywords=" + escape(document.frmHHSearch.txtwebsearch.value)
		break;
	case '':
		location.href="http://www.google.com/search?q=" + escape(document.frmHHSearch.txtwebsearch.value)
		break;
	default:
		location.href="http://www.google.com/search?q=" + escape(document.frmHHSearch.txtwebsearch.value)
		break;
}
}


//-->
