function gotoSearch(strType)
{
	theForm = document.forms["SearchForm"]
	switch (strType)
	{
		case "websearch" :
			switch (theForm.engine.options[theForm.engine.selectedIndex].value)
			{
				case "Google":
					this.location.href="http://www.google.com/search?q=" + theForm.w_keywords.value
					break
				case "Yahoo":
					this.location.href="http://search.yahoo.com/search?p=" + theForm.w_keywords.value
					break
				case "MSN":
					this.location.href="http://search.msn.com/results.aspx?q=" + theForm.w_keywords.value + "&FORM=QBHP"
			}
			break
		case "indsearch" :
			this.location.href="industrial.aspx"
			break
		default:
			break
	}
	return false
		
}
