// JavaScript Document
function searchCheck(passform)
{
	
	if(passform.q.value == "")
		{
			alert("you need to enter search criteria")
			passform.q.focus
			return false
		}
	else
		{
			q = passform.q.value
		}
	
	if(passform.searcher.value == "google")
		{
			popUp = window.open("http://www.google.com/search?hl=en&q=" + q,"Google_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp.focus()
		}
	else if(passform.searcher.value == "google_w")
		{
			popUp8 = window.open("http://www.google.com/search?hl=en&q=" + q,"Google_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp8.focus()
		}
	else if(passform.searcher.value == "google_images")
		{
			popUp8 = window.open("http://images.google.com/images?q=" + q + "&hl=en","Google_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp8.focus()
		}
	else if(passform.searcher.value == "google_groups")
		{
			popUp8 = window.open("http://groups.google.com/groups?q=" + q + "&btnG=Search+Froogle&sa=N&tab=fg","Google_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp8.focus()
		}
	else if(passform.searcher.value == "froogle")
		{
			popUp8 = window.open("http://froogle.google.com/froogle?q=" + q + "&hl=en&btnG=Search+Froogle","Google_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp8.focus()
		}
	else if(passform.searcher.value == "google_local")
		{
			popUp8 = window.open("http://local.google.com/local?q=" + q + "&hl=en&sa=N&tab=il","Google_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp8.focus()
		}
		
	else if(passform.searcher.value == "yahoo")
		{
			popUp2 = window.open("http://search.yahoo.com/search?p=" + q + "&fr=FP-tab-web-t&toggle=1&cop=&ei=UTF-8","Yahoo_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp2.focus()
		}
	else if(passform.searcher.value == "ebay")
		{
			popUp3 = window.open("http://search.ebay.com/search/search.dll?from=R40&satitle=" + q,"Ebay_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp3.focus()
		}
	else if(passform.searcher.value == "msn")
		{
			popUp4 = window.open("http://search.msn.com/results.aspx?FORM=MSNH&srch_type=0&q=" + q,"MSN_Search","toolbar=no,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp4.focus()
		}
	else if(passform.searcher.value == "amazon")
		{
			popUp5 = window.open("http://a9.com/" + q + "?src=amz_0781_t2","Amazon_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp5.focus()
		}
		else if(passform.searcher.value == "dictionary")
		{
			popUp6 = window.open("http://dictionary.reference.com/search?q=" + q,"Dictionary_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp6.focus()
		}
	else if(passform.searcher.value == "webster")
		{
			popUp6 = window.open("http://www.webster.com/cgi-bin/dictionary?book=Dictionary&va=" + q,"Webster_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp6.focus()
		}
	else if(passform.searcher.value == "ask")
		{
			popUp7 = window.open("http://web.ask.com/web?q=" + q + "&qsrc=0&o=0","Ask_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp7.focus()
		}
	else if(passform.searcher.value == "aol")
		{
			popUp7 = window.open("http://web.ask.com/web?q=" + q + "&qsrc=0&o=0","Ask_Search","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=450, left=0, top=0")
			popUp7.focus()
		}
	return false
}
