// JavaScript Document
function okh(){
 if(infoActionFormh.KEYWORD.value==null||infoActionFormh.KEYWORD.value==""){
       alert("关键字不能空");
       return ;
   }
infoActionFormh.submit();
}
document.write('<table width="168" border="0" cellspacing="0" cellpadding="0">');
document.write('<form name="infoActionFormh" method="post"  enctype="multipart/form-data"  action="/infoAction.do?operation=getIndex" >');
//document.write('  <tr>');
//document.write('    <td><img src="/images/search.gif" width="206" height="25"></td>');
//document.write('  </tr>');
document.write('  <tr>');
document.write('   <td height="35" align="center"><select name="CARTICLETITLE">');
document.write('     <option value="1" selected>--按标题搜索--</option>');
document.write('     <option value="2">--按内容搜索--</option>');
document.write('    </select></td>');
document.write('  </tr>');
document.write('  <tr>');
document.write('    <td height="29" align="center"><input name="KEYWORD" type="text" value="输入关键字" size="20"></td>');
document.write('  </tr>');
document.write('  <tr>');
document.write('    <td align="center" class="button"><a href="javascript:okh();" class="button">搜索</a></td>');
document.write('  </tr>');
document.write('</form>');
document.write('</table>');

