<!-- Begin SEARCH optionS

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN option OFF OR ON

// ONLY USE lowercase FOR ALL optionS




var domain		= "mygolfactory.com"	   // EDIT WITH YOUR DOMAIN NAME
var showsearch		= "yes"			  // SHOW THE SEARCH FORM
var searchtext		= "Search Site:"	 // TEXT ABOVE SEARCH FORM
var showoptions		= "yes"			// SHOW SEARCH SELECT OPTIONS





// COPYRIGHT 2009 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE




// SEARCH FORM
   if (showsearch == "yes") {
document.write('<table cellpadding="0" cellspacing="5" border="0" class="searchbox printhide"><tr><td align="left" valign="top">');
document.write(''+searchtext+'<br>');
document.write('<table cellpadding="2" cellspacing="0" border="0"><tr><td valign="top">');
document.write('<form method="post" action="http://'+domain+'/cgi-bin/websearch.pl" class="formmargin">');
document.write('<input type="hidden" name="DateRange" VALUE="All">');
document.write('<input type="hidden" name="hits" value="25">');

document.write('<input type="text" name="terms" SIZE="22" class="searchsiteform"><br>');

document.write('</td><td>');
document.write('<input type="image" SRC="picts/search-off.gif" border="0" onmouseover="this.src=\'picts/search-on.gif\'" onmouseout="this.src=\'picts/search-off.gif\'"><br>');

document.write('</td></tr><tr><td valign="top" colspan="2">');
   if (showoptions == "yes") {
document.write('<select name="boolean" class="searchsitedrop">');
document.write('<option selected name="any terms" value="any terms">Any phrase');
document.write('<option name="all terms" value="all terms">Exact phrase');
document.write('</select><br>');
}
else
{
document.write('<input type="hidden" name="any terms" value="any terms">');
}
document.write('</form>');
document.write('</td></tr></table>');
document.write('</td></tr></table>');
}



// -- END -->