function gsbcheck() {
	var rExp = /websitenamehere/gi;
	document.GoogleSearch.cof.value = document.GoogleSearch.cof.value.replace(rExp, location.hostname);
}

function doBusinessSearch(strSearchString) {
	var rExpQuote = /quote/gi;
	var rExp = /websitenamehere/gi;
  
	document.GoogleSearch.cof.value = document.GoogleSearch.cof.value.replace(rExp, location.hostname);
	document.GoogleSearch.q.value = strSearchString.replace(rExpQuote, '"');
	document.GoogleSearch.submit();
}
