menu.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:20k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="com.redmoon.forum.*"%>
  3. <%@ page import="java.util.Iterator"%>
  4. <%@ page import="java.util.*"%>
  5. <%@ page import="cn.js.fan.util.*"%>
  6. <%@ page import="com.redmoon.forum.miniplugin.*"%>
  7. <%@ page import="com.redmoon.forum.plugin.*"%>
  8. <%@ page import="com.redmoon.forum.plugin.sweet.*"%>
  9. <%@ page import="com.redmoon.forum.person.*"%>
  10. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  11. <HTML><HEAD><TITLE>Menu</TITLE>
  12. <META http-equiv=Content-Type content="text/html; charset=utf-8">
  13. <LINK href="images/default.css" type=text/css rel=stylesheet>
  14. <STYLE type=text/css>.ttl {
  15. CURSOR: hand; COLOR: #ffffff; PADDING-TOP: 4px
  16. }
  17. </STYLE>
  18. <SCRIPT language=javascript>
  19.   function showHide(obj) {
  20.     var oStyle = obj.parentElement.parentElement.parentElement.rows[1].style;
  21.     oStyle.display == "none" ? oStyle.display = "block" : oStyle.display = "none";
  22.   }
  23. </SCRIPT>
  24. <META content="MSHTML 6.00.3790.259" name=GENERATOR></HEAD>
  25. <BODY bgColor=#9aadcd leftMargin=0 topMargin=0>
  26. <BR>
  27. <%
  28. String rootpath = request.getContextPath();
  29. %>
  30. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  31.   <TBODY>
  32.   <TR>
  33.     <TD width=23><IMG height=25 
  34.       src="images/box_topleft.gif" width=23></TD>
  35.     <TD class=ttl onclick=showHide(this) width=129 
  36.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="quick_channel"/></TD>
  37.     <TD width=7><IMG height=25 
  38.       src="images/box_topright.gif" width=7></TD></TR>
  39.   <TR>
  40.     <TD 
  41.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  42.     background="images/box_bg.gif" colSpan=3>
  43.       <TABLE width="100%">
  44.         <TBODY>
  45.         <TR>
  46.           <TD><IMG height=7 hspace=5 
  47.             src="images/arrow.gif" width=5 align=absMiddle> 
  48.             <A href="<%=rootpath%>/forum/index.jsp" 
  49. target=_blank><lt:Label res="res.label.forum.admin.menu" key="browse_website"/></A></TD></TR>
  50.         <TR>
  51.           <TD><img height=7 hspace=5 
  52.             src="images/arrow.gif" width=5 align=absMiddle> <a 
  53.             href="dir_frame.jsp" 
  54.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="board_mgr"/></a></TD>
  55.         </TR>
  56.         
  57.         
  58.         <TR>
  59.           <TD><img height=7 hspace=5 
  60.             src="images/arrow.gif" width=5 align=absMiddle> <a 
  61.             href="../../chat/manage/manage.jsp" 
  62.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="chatroom_mgr"/></a></TD>
  63.         </TR>
  64.         <TR>
  65.           <TD><img height=7 hspace=5 
  66.             src="images/arrow.gif" width=5 align=absMiddle> <a 
  67.             href="link.jsp" 
  68.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="link"/></a></TD>
  69.         </TR>
  70.         <TR>
  71.           <TD><img height=7 hspace=5 
  72.             src="images/arrow.gif" width=5 align=absMiddle> <a 
  73.             href="../../cms/frame.jsp" 
  74.             target=_top><lt:Label res="res.label.forum.admin.menu" key="cms_mgr"/></a> </TD>
  75.         </TR>
  76.         <TR>
  77.           <TD><img height=7 hspace=5 
  78.             src="images/arrow.gif" width=5 align=absMiddle> <a 
  79.             href="../../blog/admin/frame.jsp" 
  80.             target=_top><lt:Label res="res.label.forum.admin.menu" key="blog_mgr"/></a></TD>
  81.         </TR>
  82.         </TBODY></TABLE></TD></TR></TR>
  83.   <TR>
  84.     <TD colSpan=3><IMG height=10 
  85.       src="images/box_bottom.gif" 
  86. width=159></TD></TR></TBODY></TABLE>
  87. <%
  88. Directory dir = new Directory();
  89. Menu menu = dir.getMenu("root");
  90. Iterator ir = menu.Iterator();
  91. while (ir.hasNext()) {
  92. MenuItem mi = (MenuItem)ir.next();
  93. %>
  94. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  95.   <TBODY>
  96.   <TR>
  97.     <TD width=23><IMG height=25 
  98.       src="images/box_topleft.gif" width=23></TD>
  99.     <TD class=ttl onclick=showHide(this) width=129 
  100.     background="images/box_topbg.gif">
  101. <%
  102. Leaf headLeaf = mi.getHeadLeaf();
  103. out.print(headLeaf.getName());
  104. %>
  105. </TD>
  106.     <TD width=7><IMG height=25 
  107.       src="images/box_topright.gif" width=7></TD></TR>
  108.   <TR style="DISPLAY: none">
  109.     <TD 
  110.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  111.     background="images/box_bg.gif" colSpan=3>
  112.       <TABLE width="100%">
  113.         <TBODY>
  114. <%
  115. Iterator childir = mi.getChildLeaves();
  116. while (childir.hasNext()) {
  117. Leaf childLeaf = (Leaf) childir.next();
  118. %>
  119.         <TR>
  120.           <TD><IMG height=7 hspace=5 
  121.             src="images/arrow.gif" width=5 align=absMiddle> 
  122.             <A 
  123.             href="dir_frame.jsp?root_code=<%=StrUtil.UrlEncode(childLeaf.getCode())%>" 
  124.             target=mainFrame><%=childLeaf.getName()%></A></TD></TR>
  125. <%
  126. }
  127. %>
  128.         </TBODY></TABLE>
  129.   </TD></TR></TR>
  130.   <TR>
  131.     <TD colSpan=3><IMG height=10 
  132.       src="images/box_bottom.gif" 
  133. width=159></TD></TR></TBODY></TABLE>
  134. <%
  135. }
  136. %>
  137. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  138.   <TBODY>
  139.   <TR>
  140.     <TD width=23><IMG height=25 
  141.       src="images/box_topleft.gif" width=23></TD>
  142.     <TD class=ttl onclick=showHide(this) width=129 
  143.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="user_mgr"/></TD>
  144.     <TD width=7><IMG height=25 
  145.       src="images/box_topright.gif" width=7></TD></TR>
  146.   <TR style="DISPLAY: none">
  147.     <TD 
  148.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  149.     background="images/box_bg.gif" colSpan=3>
  150.       <TABLE width="100%">
  151.         <TR>
  152.           <TD><IMG height=7 hspace=5 
  153.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  154.             href="user_m.jsp"
  155.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="mgr_user"/></A></TD>
  156.         </TR>
  157.         <TBODY>
  158.         <TR>
  159.           <TD><IMG height=7 hspace=5 
  160.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  161.             href="user_group_m.jsp"
  162.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="mgr_user_group"/></A></TD>
  163.         </TR>
  164.         </TBODY></TABLE></TD></TR></TR>
  165.   <TR>
  166.     <TD colSpan=3><IMG height=10 
  167.       src="images/box_bottom.gif" 
  168. width=159></TD></TR></TBODY></TABLE>
  169. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  170.   <TBODY>
  171.     <TR>
  172.       <TD width=23><IMG height=25 
  173.       src="images/box_topleft.gif" width=23></TD>
  174.       <TD class=ttl onclick=showHide(this) width=129 
  175.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="data_mgr"/></TD>
  176.       <TD width=7><IMG height=25 
  177.       src="images/box_topright.gif" width=7></TD>
  178.     </TR>
  179.     <TR style="DISPLAY: none">
  180.       <TD 
  181.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  182.     background="images/box_bg.gif" colSpan=3><TABLE width="100%">
  183.         <TR>
  184.             <TD><IMG height=7 hspace=5 
  185.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<a 
  186.             href="forum_notice.jsp" 
  187.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="bbs_notice"/></a></TD>
  188.          </TR>
  189. <TR>
  190.           <TD><IMG height=7 hspace=5 
  191.             src="images/arrow.gif" width=5 align=absMiddle> <A href="move_board.jsp" 
  192.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="board_move"/></A></TD>
  193.         </TR>
  194.         <TBODY>
  195.           <TR>
  196.             <TD><IMG height=7 hspace=5 
  197.             src="images/arrow.gif" width=5 align=absMiddle> <A href="bak_m.jsp" 
  198.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="bak_data"/></A></TD>
  199.           </TR>
  200.           <TR>
  201.             <TD><IMG height=7 hspace=5 
  202.             src="images/arrow.gif" width=5 align=absMiddle> <A href="../topic_m.jsp" 
  203.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="toplic_mgr"/></A></TD>
  204.           </TR>
  205.           <TR>
  206.             <TD><IMG height=7 hspace=5 
  207.             src="images/arrow.gif" width=5 align=absMiddle> <A href="../topic_check.jsp" 
  208.             target=mainFrame>
  209.               <lt:Label res="res.label.forum.admin.menu" key="check_msg"/>
  210.             </A></TD>
  211.           </TR>
  212.           <TR>
  213.             <TD><IMG height=7 hspace=5 
  214.             src="images/arrow.gif" width=5 align=absMiddle> <A href="../dustbin.jsp" 
  215.             target=mainFrame>
  216.             <lt:Label res="res.label.forum.admin.menu" key="dustbin"/>
  217.             </A></TD>
  218.           </TR>
  219.         </TBODY>
  220.       </TABLE></TD>
  221.     </TR>
  222.     </TR>
  223.     
  224.     <TR>
  225.       <TD colSpan=3><IMG height=10 
  226.       src="images/box_bottom.gif" 
  227. width=159></TD>
  228.     </TR>
  229.   </TBODY>
  230. </TABLE>
  231. <table cellspacing=0 cellpadding=0 width=159 align=center border=0>
  232.   <tbody>
  233.     <tr>
  234.       <td width=23><img height=25 
  235.       src="images/box_topleft.gif" width=23></td>
  236.       <td class=ttl onClick=showHide(this) width=129 
  237.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="safe_mgr"/></td>
  238.       <td width=7><img height=25 
  239.       src="images/box_topright.gif" width=7></td>
  240.     </tr>
  241.     <tr style="DISPLAY: none">
  242.       <td 
  243.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  244.     background="images/box_bg.gif" colspan=3><TABLE width="100%">
  245.         <TR>
  246.           <TD><IMG height=7 hspace=5 
  247.             src="images/arrow.gif" width=5 align=absMiddle> <A href="forbidip.jsp" 
  248.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="IP_address_limit"/></A></TD>
  249.         </TR>
  250. <TR>
  251.             <TD><IMG height=7 hspace=5 
  252.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<a 
  253.             href="forum_m.jsp" 
  254.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="bbs_filter"/></a></TD>
  255.         </TR>
  256.         <TBODY>
  257.             <TR>
  258.               <TD><IMG height=7 hspace=5 
  259.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<A 
  260.             href="config_reg.jsp" 
  261.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="config_reg"/>
  262.               </A></TD>
  263.             </TR>
  264.             <TR>
  265.               <TD><IMG height=7 hspace=5 
  266.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<A 
  267.             href="config_time.jsp" 
  268.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="time_config"/> </A></TD>
  269.             </TR>   
  270.         </TBODY>
  271.       </TABLE></td>
  272.     </tr>
  273.     <tr>
  274.       <td colspan=3><img height=10 
  275.       src="images/box_bottom.gif" 
  276. width=159></td>
  277.     </tr>
  278.   </tbody>
  279. </table>
  280. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  281.   <TBODY>
  282.     <TR>
  283.       <TD width=23><IMG height=25 
  284.       src="images/box_topleft.gif" width=23></TD>
  285.       <TD class=ttl onclick=showHide(this) width=129 
  286.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="ui_mgr"/></TD>
  287.       <TD width=7><IMG height=25 
  288.       src="images/box_topright.gif" width=7></TD>
  289.     </TR>
  290.     <TR style="DISPLAY: none">
  291.       <TD 
  292.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  293.     background="images/box_bg.gif" colSpan=3><TABLE width="100%">
  294.         <TR>
  295.           <TD><IMG height=7 hspace=5 
  296.             src="images/arrow.gif" width=5 align=absMiddle> <A href="forum_face.jsp" 
  297.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="reg_face"/></A></TD>
  298.         </TR>
  299.         <TR>
  300.           <TD><IMG height=7 hspace=5 
  301.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<a href="theme_config.jsp" target="mainFrame"><lt:Label res="res.label.forum.admin.menu" key="theme"/></a></TD>
  302.         </TR>
  303.         <TR>
  304.           <TD><IMG height=7 hspace=5 
  305.             src="images/arrow.gif" width=5 align=absMiddle> <A href="ad_list.jsp" 
  306.             target=mainFrame> <lt:Label res="res.label.forum.admin.menu" key="ad_mgr"/> </A></TD>
  307.         </TR>
  308.         <TR>
  309.           <TD><IMG height=7 hspace=5 
  310.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<a href="water_mark.jsp" target="mainFrame"><lt:Label res="res.label.forum.admin.menu" key="water_mark_pic"/></a></TD>
  311.         </TR>
  312.         <TR>
  313.           <TD><IMG height=7 hspace=5 
  314.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<a href="check_referer.jsp" target="mainFrame"><lt:Label res="res.label.forum.admin.menu" key="check_referer"/></a></TD>
  315.         </TR>
  316.        <TBODY>
  317.         </TBODY>
  318.       </TABLE></TD>
  319.     </TR>
  320.     </TR>
  321.     
  322.     <TR>
  323.       <TD colSpan=3><IMG height=10 
  324.       src="images/box_bottom.gif" 
  325. width=159></TD>
  326.     </TR>
  327.   </TBODY>
  328. </TABLE>
  329. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  330.   <TBODY>
  331.     <TR>
  332.       <TD width=23><IMG height=25 
  333.       src="images/box_topleft.gif" width=23></TD>
  334.       <TD class=ttl onclick=showHide(this) width=129 
  335.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="plugin_mgr"/></TD>
  336.       <TD width=7><IMG height=25 
  337.       src="images/box_topright.gif" width=7></TD>
  338.     </TR>
  339.     <TR style="DISPLAY: none">
  340.       <TD 
  341.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  342.     background="images/box_bg.gif" colSpan=3>
  343. <%
  344. PluginMgr pm = new PluginMgr();
  345. Vector v = pm.getAllPlugin();
  346. ir = v.iterator();
  347. while (ir.hasNext()) {
  348. PluginUnit pu = (PluginUnit)ir.next();
  349. if (pu!=null && !pu.getAdminEntrance().trim().equals("")) {
  350. %>
  351. <TABLE width="100%">
  352.           <TBODY>
  353.             <TR>
  354.               <TD><IMG height=7 hspace=5 src="images/arrow.gif" width=5 align=absMiddle>
  355. <A href="<%=pu.getAdminEntrance()%>" target=mainFrame><%=pu.LoadString(request, "adminMenuItem")%></A>
  356.   </TD>
  357.             </TR>
  358.           </TBODY>
  359.       </TABLE>
  360. <% }
  361. }%>
  362. <TABLE width="100%">
  363.   <TBODY>
  364.     <TR>
  365.       <TD><IMG height=7 hspace=5 
  366.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  367.             href="render.jsp" 
  368.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="control_display_toplic_plugin"/></a></TD>
  369.     </TR>
  370.     <TR>
  371.       <TD><IMG height=7 hspace=5 
  372.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  373.             href="entrance.jsp" 
  374.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="enter_plugin_mode"/></a></TD>
  375.     </TR>
  376.     <TR>
  377.       <TD><IMG height=7 hspace=5 
  378.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  379.             href="score.jsp" 
  380.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="score_plugin"/></a></TD>
  381.     </TR>
  382.   </TBODY>
  383. </TABLE>
  384. </TD>
  385.     </TR>
  386.     <TR>
  387.       <TD colSpan=3><IMG height=10 
  388.       src="images/box_bottom.gif" 
  389. width=159></TD>
  390.     </TR>
  391.   </TBODY>
  392. </TABLE>
  393. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  394.   <TBODY>
  395.     <TR>
  396.       <TD width=23><IMG height=25 
  397.       src="images/box_topleft.gif" width=23></TD>
  398.       <TD class=ttl onclick=showHide(this) width=129 
  399.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="mini_plugin_mgr"/></TD>
  400.       <TD width=7><IMG height=25 
  401.       src="images/box_topright.gif" width=7></TD>
  402.     </TR>
  403.     <TR style="DISPLAY: none">
  404.       <TD 
  405.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  406.     background="images/box_bg.gif" colSpan=3><%
  407. MiniPluginMgr mpm = new MiniPluginMgr();
  408. Vector mv = mpm.getAllPlugin();
  409. if (mv!=null)
  410. ir = mv.iterator();
  411. while (ir.hasNext()) {
  412. MiniPluginUnit pu = (MiniPluginUnit)ir.next();
  413. String entrance = StrUtil.getNullStr(pu.getAdminEntrance()).trim();
  414. if (pu!=null && pu.isPlugin() && !entrance.equals("")) {
  415. %>
  416.           <TABLE width="100%">
  417.             <TBODY>
  418.               <TR>
  419.                 <TD><IMG height=7 hspace=5 
  420.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  421.             href="<%=pu.getAdminEntrance()%>" 
  422.             target=mainFrame><%=pu.LoadString(request, "adminMenuItem")%></A></TD>
  423.               </TR>
  424.             </TBODY>
  425.           </TABLE>
  426.         <%}
  427. }%></TD>
  428.     </TR>
  429.     <TR>
  430.       <TD colSpan=3><IMG height=10 
  431.       src="images/box_bottom.gif" 
  432. width=159></TD>
  433.     </TR>
  434.   </TBODY>
  435. </TABLE>
  436. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  437.   <TBODY>
  438.     <TR>
  439.       <TD width=23><IMG height=25 
  440.       src="images/box_topleft.gif" width=23></TD>
  441.       <TD class=ttl onclick=showHide(this) width=129 
  442.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="other"/></TD>
  443.       <TD width=7><IMG height=25 
  444.       src="images/box_topright.gif" width=7></TD>
  445.     </TR>
  446.     <TR style="DISPLAY: none">
  447.       <TD style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" background="images/box_bg.gif" colSpan=3><TABLE width="100%">
  448.         <TBODY>
  449.           <TR>
  450.             <TD><IMG height=7 hspace=5 
  451.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  452.             href="config_seo.jsp" 
  453.             target=mainFrame>
  454.               <lt:Label res="res.label.forum.admin.menu" key="config_seo"/>
  455.             </A></TD>
  456.           </TR>
  457.   <TR>
  458.                 <TD><IMG height=7 hspace=5 
  459.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  460.             href="dir_check_pvg.jsp" 
  461.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="file_dir_chk"/></A></TD>
  462.               </TR>
  463.         </TBODY>
  464.       </TABLE></TD>
  465.     </TR>
  466.     <TR>
  467.       <TD colSpan=3><IMG height=10 
  468.       src="images/box_bottom.gif" 
  469. width=159></TD>
  470.     </TR>
  471.   </TBODY>
  472. </TABLE>
  473. <TABLE cellSpacing=0 cellPadding=0 width=159 align=center border=0>
  474.   <TBODY>
  475.     <TR>
  476.       <TD width=23><IMG height=25 
  477.       src="images/box_topleft.gif" width=23></TD>
  478.       <TD class=ttl onclick=showHide(this) width=129 
  479.     background="images/box_topbg.gif"><lt:Label res="res.label.forum.admin.menu" key="sys_config"/></TD>
  480.       <TD width=7><IMG height=25 
  481.       src="images/box_topright.gif" width=7></TD>
  482.     </TR>
  483.     <TR style="DISPLAY: none">
  484.       <TD 
  485.     style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; PADDING-TOP: 3px" 
  486.     background="images/box_bg.gif" colSpan=3><TABLE width="100%">
  487.         <TR>
  488.           <TD><IMG height=7 hspace=5 
  489.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  490.             href="../../log/community.log" 
  491.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="sys_log"/></A></TD>
  492.         </TR>
  493.         <TR>
  494.           <TD><IMG height=7 hspace=5 
  495.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  496.             href="forum_statistic.jsp" 
  497.             target=mainFrame>
  498.             <lt:Label res="res.label.forum.admin.menu" key="forum_statistic"/>
  499.           </A></TD>
  500.         </TR>
  501.           <TBODY>
  502.             <TR>
  503.               <TD><IMG height=7 hspace=5 
  504.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  505.             href="setup_user_level.jsp" 
  506.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="rank_mgr"/></A></TD>
  507.             </TR>
  508.             <TR>
  509.               <TD><IMG height=7 hspace=5 
  510.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  511.             href="config_score.jsp" 
  512.             target=mainFrame>
  513.                 <lt:Label res="res.label.forum.admin.config_score" key="score_mgr"/>            
  514.               </A></TD>
  515.             </TR>
  516.             <TR>
  517.               <TD><IMG height=7 hspace=5 
  518.             src="images/arrow.gif" width=5 align=absMiddle>&nbsp;<A 
  519.             href="forum_status.jsp" 
  520.             target=mainFrame><lt:Label res="res.label.forum.admin.menu" key="forum_state"/></A></TD>
  521.             </TR>
  522.             <TR>
  523.               <TD><IMG height=7 hspace=5 
  524.             src="images/arrow.gif" width=5 align=absMiddle> <A 
  525.             href="config_m.jsp" 
  526.             target=mainFrame>
  527.                 <lt:Label res="res.label.forum.admin.menu" key="bbs_config"/>
  528.               </A></TD>
  529.             </TR>
  530.           </TBODY>
  531.       </TABLE></TD>
  532.     </TR>
  533.     <TR>
  534.       <TD colSpan=3><IMG height=10 
  535.       src="images/box_bottom.gif" 
  536. width=159></TD>
  537.     </TR>
  538.   </TBODY>
  539. </TABLE>
  540. </BODY></HTML>