<!-- 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 showsearch		= "yes"		// SHOW THE SEARCH FORM
var searchLR		= "left"	  // SEARCH FORM LEFT OR RIGHT
var searchX		= "3"		      // SEARCH FORM X LOCATION
var searchY		= "123"		    // SEARCH FORM Y LOCATION
var searchtext		= "Web Search:"	// TEXT ABOVE SEARCH FORM

var goog = '<A HREF="http://www.google.com/" target="_blank"><IMG SRC="http://www.google.com/logos/Logo_25wht.gif" border="0" ALT="Google" align="top"></A>'


function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

// SEARCH FORM
   if (showsearch == "yes") {
		 
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

//document.write('<div id="search" style="'+searchLR+': '+searchX+'px; POSITION: absolute; TOP: '+searchY+'px; width: auto; z-index: 1;">')
document.write('<div >')
document.write('<TABLE cellpadding="0" cellspacing="2" border="0"><tr><td colspan="2" class="search-font">')
document.write(''+goog+'<br>')
//document.write(''+searchtext+'<br>')
document.write('</td><td align="left">')
document.write('<form action="http://www.google.com/search" name="f" target="_blank" style="margin: 0px">')
document.write('<input type="hidden" name="any selected">')
//document.write('<INPUT size="15" NAME="required" VALUE="email">');
document.write('<input size="16" name="q"  class="searchform">')
document.write('</td><td align="left">')
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\'" alt="Search"><br>')
document.write('</form>')
document.write('</td></tr></table>')
document.write('</div>')
}



// -- END -->