	function submitSearch(siteURL,language,theWidth,theHeight,top,left,menubar,toolbar,location,status,scrollbars,resizeable) {
		q=document.googleSearch.q.value ;
		if(!siteURL) siteURL='' ;
		if(!language) language='en' ;
		if(!theWidth) theWidth=800 ;
		if(!theHeight) theHeight=600 ;
		if(!top) top=100 ;
		if(!left) left=100 ;
		screenX=left ;
		screenY=top ;
		featureList="," ;
		if(!(menubar=='no')) featureList+='menubar,' ;
		if(!(toolbar=='no')) featureList+='toolbar,' ;
		if(!(location=='no')) featureList+='location,' ;
		if(!(status=='no')) featureList+='status,' ;
		if(!(scrollbars=='no')) featureList+='scrollbars,' ;
		if(!(resizeable=='no')) featureList+='resizeable,' ;
		featureList=featureList.substr(0,featureList.length-1) ; // trim trailing comma
		if(q.length) {
			if (siteURL.length) {
				q+=" site:"+siteURL ;
			}
			googleURL="http://www.google.com/search?q="+q+"&hl="+language ;
			if (theWidth>0) {
				searchWindow=window.open(googleURL,'searchWindow','width='+theWidth+',height='+theHeight+',top='+top+',left='+left+',screenX='+screenX+',screenY='+screenY+featureList);
			} else {
				document.location=googleURL ;
			}
		}
		return false ;
	}