function hiliteme(){
	document.topsearch.searchstring.focus();
	document.topsearch.searchstring.select();
}

function searchsubmit(){
	document.topsearch.submit();
}

document.write('<div id="search"><form name="topsearch" action="search_action.cfm" method="post"><span class="searchtitle">Search Our Site:</span>&nbsp;&nbsp;<br>');
document.write('<input type="text" name="searchstring" size="32" value="enter search term" onclick="hiliteme();">&nbsp;&nbsp;&nbsp;<br>');
document.write('<a href="javascript:searchsubmit();">Search</a>&nbsp;&nbsp;&nbsp;');
document.write('</form></div>');

