document.write('<form method="get" name="frmSiteSearch" action="search.asp" onSubmit="return CheckForm();">');
document.write('  <table cellpadding="0" cellspacing="0" width="90%" align="center" class="style1">');
document.write('    <tr>       ');
document.write('   <td height="66" width="165" align="right" rowspan="3" valign="top"><img src="images/icon_search.gif" width="14" height="15"></td>');
document.write('      <td height="66" width="15" align="right" rowspan="3" valign="middle">&nbsp;</td>');
document.write('    </tr>');
document.write('    <tr> ');
document.write('      <td height="2" width="571">');
document.write('      <input name="search" maxlength="50" size="12" value="">');
document.write('<A HREF="javascript:document.frmSiteSearch.submit()">');
document.write('<img type="submit" value="Go" src="images/buttons/btn_go.gif" width="17" height="15" border="0">');
document.write('</a></td>');
document.write('    </tr>');
document.write('    <tr> ');
document.write('      <td height="34" width="571" valign="top">  ');
document.write('        <input type="radio" name="mode" value="allwords" CHECKED>All Words<br>');
document.write('        <input type="radio" name="mode" value="anywords">Any Words <br>');
document.write('        <input type="radio" name="mode" value="phrase">Phrase</td>');
document.write('    </tr>');
document.write('  </table>');
document.write('</form>');


document.write('<script  language="JavaScript">');
document.write('function CheckForm () {');
document.write('	if (document.frmSiteSearch.search.value==""){');
document.write('		alert("Please enter at least one keyword to search");');
document.write('		document.frmSiteSearch.search.focus();');
document.write('		return false;');
document.write('	}');
document.write('	return true');
document.write('}');
document.write('</script>');
