Here is the code that you would modify to get Gary's example to work as you need:

<script type="text/javascript">
//Enter domain of site to search.
var domain="http://stanleykubrick.website" //replace this with your site domain


function GoogleSiteSearch(cur){
cur.q.value="site:"+domain+" intitle:"+cur.searchTerm.value
}
</script>


<form action="http://www.google.com/search" method="get" target="_blank" onSubmit="GoogleSiteSearch(this)">
<p><br /> <!--replace [[...]] with your details -->
<input id="searchBox" name="searchTerm" type="text" style="width: 192px" /> <input type="submit" value="?" /></p>
<input name="q" type="hidden" />
</form>

I would probably add a drop-down box to force include specific operators in http://www.googleguide.com/advanced_...reference.html like intitle:, rather that hard-code it.

Acorn