SysAdmin_SetPop_Group.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:90k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../FS_Inc/Const.asp" -->
  3. <!--#include file="../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../FS_Inc/Function.asp" -->
  5. <!--#include file="../FS_Inc/Cls_Cache.asp" -->
  6. <!--#include file="../FS_Inc/Func_page.asp" -->
  7. <%
  8. Dim Conn,strShowErr,rs,Levels,str_Levels,str_Group_Name,str_PopList,rs_up
  9. MF_Default_Conn
  10. MF_Session_TF
  11. if not MF_Check_Pop_TF("MF_Pop") then Err_Show
  12. if Request.Form("Action")="Save" then
  13. if trim(Request.Form("Levels"))="" then
  14. strShowErr = "<li>错误的参数</li>"
  15. Response.Redirect("Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  16. Response.end
  17. end if
  18. set rs_up= Server.CreateObject(G_FS_RS)
  19. rs_up.open "select Levels,Group_Name,PopList From FS_MF_AdminGroup where Levels="& Request.Form("Levels")&"",Conn,1,3
  20. if not rs_up.eof then
  21. rs_up("PopList")= Replace(Request.Form("PopList_MF")&","&Request.Form("PopList_NS")&","&Request.Form("PopList_MS")&","&Request.Form("PopList_DS")&","&Request.Form("PopList_ME")&","&Request.Form("PopList_AP")&","&Request.Form("PopList_SD")&","&Request.Form("PopList_CS")&","&Request.Form("PopList_SS")&","&Request.Form("PopList_HS")&","&Request.Form("PopList_VS")&","&Request.Form("PopList_AS")&","&Request.Form("PopList_WS")&","&Request.Form("PopList_FL")&","&Request.Form("PopList")," ","")
  22. rs_up.update
  23. rs_up.close:set rs_up = nothing
  24. else
  25. strShowErr = "<li>错误的参数</li>"
  26. rs_up.close:set rs_up = nothing
  27. Response.Redirect("Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  28. Response.end
  29. end if
  30. strShowErr = "<li>更新成功</li>"
  31. Response.Redirect("Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  32. Response.end
  33. end if
  34. select case NoSqlHack(Request.QueryString("Leves"))
  35. case "1"
  36. Levels = " and Levels=0"
  37. case "2"
  38. Levels = " and Levels=1"
  39. case "3"
  40. Levels = " and Levels=2"
  41. case "4"
  42. Levels = " and Levels=3"
  43. case "5"
  44. Levels = " and Levels=4"
  45. case else
  46. Levels = " and Levels=1"
  47. end select
  48. set rs= Server.CreateObject(G_FS_RS)
  49. rs.open "select Levels,Group_Name,PopList From FS_MF_AdminGroup where 1=1 "& Levels &"",Conn,1,3
  50. if rs.eof then
  51. strShowErr = "<li>找不到初始数据,请与程序供应商Foosun Inc.联系</li>"
  52. Response.Redirect("error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  53. Response.end
  54. else
  55. str_Levels =rs(0)
  56. str_Group_Name =rs(1)
  57. str_PopList =rs(2)
  58. end if
  59. %>
  60. <html xmlns="http://www.w3.org/1999/xhtml">
  61. <HEAD>
  62. <TITLE>FoosunCMS</TITLE>
  63. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  64. </HEAD>
  65. <script language="JavaScript" src="../FS_Inc/PublicJS.js" type="text/JavaScript"></script>
  66. <script language="JavaScript" src="../FS_Inc/Prototype.js" type="text/JavaScript"></script>
  67. <script language="JavaScript" src="../FS_Inc/CheckJs.js" type="text/JavaScript"></script>
  68. <link href="images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  69. <BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 scroll=yes>
  70.   
  71. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  72.     <tr class="xingmu"> 
  73.       <td colspan="2" class="xingmu">设置固定管理组:<span class="tx"><b><%=str_Group_Name%></b></span>的权限</td>
  74.     </tr>
  75.     <tr class="hback"> 
  76.       <td colspan="2"><a href="SysAdmin_List.asp">返回管理员列表</a><a href="SysAdmin_List.asp?my=1"></a> 
  77.       </td>
  78.     </tr>
  79. </table>
  80. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  81.   <form name="PopForm" method="post" action="">
  82.     <tr> 
  83.       <td class="hback"> <div align="left">
  84.           <input name="Levels" type="hidden" id="Levels" value="<%=str_Levels%>">
  85.           <input name="Action" type="hidden" id="Action" value="Save">
  86.           管理员类型: <a href="SysAdmin_SetPop_Group.asp?Leves=1">超级管理员</a>┆<a href="SysAdmin_SetPop_Group.asp?Leves=2">一般管理员</a>┆<a href="SysAdmin_SetPop_Group.asp?Leves=3">总编辑</a>┆<a href="SysAdmin_SetPop_Group.asp?Leves=4">责任编辑</a>┆<a href="SysAdmin_SetPop_Group.asp?Leves=5">记者</a>┆ 
  87.           <input type="checkbox" name="chkall" value="checkbox" onClick="CheckAll(this.form);">
  88.           选中/取消所有</div></td>
  89.     </tr>
  90.     <tr> 
  91.       <td class="hback"><table width="100%" border="0" cellspacing="1" cellpadding="5" style="display:;" id="all_id">
  92.          <%if Request.Cookies("FoosunSUBCookie")("FoosunSUBMF")=1 then%>
  93.   <tr> 
  94.             <td colspan="2" class="hback_1"> <div align="left">
  95.                 <input name="PopList_MF" type="checkbox" id="PopList" onClick="SwitchPopType('MF_Pop');"   value="MF_Pop" <%if InStr(1,str_PopList,"MF_Pop",1)<>0 then response.Write("checked")%>>
  96.                 MF主系统 </div></td>
  97.           </tr>
  98.           <tr> 
  99.             <td colspan="2" class="hback">
  100.  <table width="100%" border="0" cellpadding="4" cellspacing="0" style="display: <%if InStr(1,str_PopList,"MF_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>"  id="MF_ID">
  101.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  102.                   <td width="14%" class="hback"> <div align="left"> 
  103.                       <input name="PopList" type="checkbox"  value="MF_Templet" <%if InStr(1,str_PopList,"MF_Templet",1)<>0 then:response.Write("checked")%>>
  104.                       模板管理 </div></td>
  105.                   <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  106.                       <tr> 
  107.                         <td><input name="PopList" type="checkbox" value="MF001" <%if InStr(1,str_PopList,"MF001",1)>0 then response.Write "checked"%>>
  108.                           修改文件 
  109.                           <input name="PopList" type="checkbox" id="PopList" value="MF002"  <%if InStr(1,str_PopList,"MF002",1)>0 then response.Write "checked"%>>
  110.                           改名文件 
  111.                           <input name="PopList" type="checkbox" id="PopList" value="MF003" <%if InStr(1,str_PopList,"MF003",1)>0 then response.Write "checked"%>>
  112.                           删除文件 
  113.                           <input name="PopList" type="checkbox" id="PopList" value="MF004" <%if InStr(1,str_PopList,"MF004",1)>0 then response.Write "checked"%>>
  114.                           创建目录 
  115.                           <input name="PopList" type="checkbox" id="PopList" value="MF005" <%if InStr(1,str_PopList,"MF005",1)>0 then response.Write "checked"%>>
  116.                           导入文件 
  117.                           <input name="PopList" type="checkbox" id="PopList" value="MF006" <%if InStr(1,str_PopList,"MF006",1)>0 then response.Write "checked"%>>
  118.                           在线编辑(修改模板) </td>
  119.                       </tr>
  120.                     </table></td>
  121.                 </tr>
  122.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  123.                   <td class="hback"> <div align="left"> 
  124.                       <input name="PopList" type="checkbox" id="PopList" value="MF_Style"  <%if InStr(1,str_PopList,"MF_Style",1)>0 then response.Write "checked"%>>
  125.                       标签样式</div></td>
  126.                   <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  127.                       <tr> 
  128.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF007" <%if InStr(1,str_PopList,"MF007",1)>0 then response.Write "checked"%>>
  129.                           增加样式 
  130.                           <input name="PopList" type="checkbox" id="PopList" value="MF008" <%if InStr(1,str_PopList,"MF008",1)>0 then response.Write "checked"%>>
  131.                           修改样式 </td>
  132.                       </tr>
  133.                     </table></td>
  134.                 </tr>
  135.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  136.                   <td class="hback"> <div align="left"> 
  137.                       <input name="PopList" type="checkbox" id="PopList" value="MF_Public" <%if InStr(1,str_PopList,"MF_Public",1)>0 then response.Write "checked"%>>
  138.                       发布管理</div></td>
  139.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  140.                       <tr> 
  141.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF009" <%if InStr(1,str_PopList,"MF009",1)>0 then response.Write "checked"%>>
  142.                           开启 </td>
  143.                       </tr>
  144.                     </table></td>
  145.                 </tr>
  146.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  147.                   <td class="hback"> <div align="left"> 
  148.                       <input name="PopList" type="checkbox" id="PopList" value="MF_sPublic" <%if InStr(1,str_PopList,"MF_Public",1)>0 then response.Write "checked"%>>
  149.                       标签管理</div></td>
  150.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  151.                       <tr> 
  152.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF025" <%if InStr(1,str_PopList,"MF025",1)>0 then response.Write "checked"%>>
  153.                           创建标签 </td>
  154.                       </tr>
  155.                     </table></td>
  156.                 </tr>
  157.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  158.                   <td class="hback"> <div align="left"> 
  159.                       <input name="PopList" type="checkbox" id="PopList" value="MF_SysSet" <%if InStr(1,str_PopList,"MF_SysSet",1)>0 then response.Write "checked"%>>
  160.                       参数设置</div></td>
  161.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  162.                       <tr> 
  163.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF010" <%if InStr(1,str_PopList,"MF010",1)>0 then response.Write "checked"%>>
  164.                           开启 </td>
  165.                       </tr>
  166.                     </table></td>
  167.                 </tr>
  168.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  169.                   <td class="hback"> <div align="left"> 
  170.                       <input name="PopList" type="checkbox" id="PopList" value="MF_Const" <%if InStr(1,str_PopList,"MF_Const",1)>0 then response.Write "checked"%>>
  171.                       配置文件</div></td>
  172.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  173.                       <tr> 
  174.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF011" <%if InStr(1,str_PopList,"MF011",1)>0 then response.Write "checked"%>>
  175.                           全局变量设置 
  176.                           <input name="PopList" type="checkbox" id="PopList" value="MF012" <%if InStr(1,str_PopList,"MF012",1)>0 then response.Write "checked"%>>
  177.                           自动刷新配置文件</td>
  178.                       </tr>
  179.                     </table></td>
  180.                 </tr>
  181.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  182.                   <td class="hback"> <div align="left"> 
  183.                       <input name="PopList" type="checkbox" id="PopList" value="MF_SubSite" <%if InStr(1,str_PopList,"MF_SubSite",1)>0 then response.Write "checked"%>>
  184.                       子系统维护</div></td>
  185.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  186.                       <tr> 
  187.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF013" <%if InStr(1,str_PopList,"MF013",1)>0 then response.Write "checked"%>>
  188.                           开启 </td>
  189.                       </tr>
  190.                     </table></td>
  191.                 </tr>
  192.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  193.                   <td class="hback"> <input name="PopList" type="checkbox" id="PopList" value="MF_DataFix" <%if InStr(1,str_PopList,"MF_DataFix",1)>0 then response.Write "checked"%>>
  194.                     数据库维护</td>
  195.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  196.                       <tr> 
  197.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF015" <%if InStr(1,str_PopList,"MF015",1)>0 then response.Write "checked"%>>
  198.                           数据库压缩 
  199.                           <input name="PopList" type="checkbox" id="PopList" value="MF016" <%if InStr(1,str_PopList,"MF016",1)>0 then response.Write "checked"%>>
  200.                           数据库备份 
  201.                           <input name="PopList" type="checkbox" id="PopList" value="MF017" <%if InStr(1,str_PopList,"MF017",1)>0 then response.Write "checked"%>>
  202.                           SQL语句查询操作</td>
  203.                       </tr>
  204.                     </table></td>
  205.                 </tr>
  206.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  207.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MF_Log" <%if InStr(1,str_PopList,"MF_Log",1)>0 then response.Write "checked"%>>
  208.                     日志管理</td>
  209.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  210.                       <tr> 
  211.                         <td><input name="PopList" type="checkbox" id="PopList" value="MF018" <%if InStr(1,str_PopList,"MF018",1)>0 then response.Write "checked"%>>
  212.                           操作日志 
  213.                           <input name="PopList" type="checkbox" id="PopList" value="MF019" <%if InStr(1,str_PopList,"MF019",1)>0 then response.Write "checked"%>>
  214.                           安全日志 
  215.                           <input name="PopList" type="checkbox" id="PopList" value="MF020" <%if InStr(1,str_PopList,"MF020",1)>0 then response.Write "checked"%>>
  216.                           删除日志</td>
  217.                       </tr>
  218.                     </table></td>
  219.                 </tr>
  220.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  221.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MF_Define" <%if InStr(1,str_PopList,"MF_Define",1)>0 then response.Write "checked"%>>
  222.                     自定义字段</td>
  223.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  224.                       <tr> 
  225.                         <td> <input name="PopList" type="checkbox" id="PopList" value="MF021" <%if InStr(1,str_PopList,"MF021",1)>0 then response.Write "checked"%>>
  226.                           增加 
  227.                           <input name="PopList" type="checkbox" id="PopList" value="MF022" <%if InStr(1,str_PopList,"MF022",1)>0 then response.Write "checked"%>>
  228.                           删除</td>
  229.                       </tr>
  230.                     </table></td>
  231.                 </tr>
  232.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  233.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MF_other" <%if InStr(1,str_PopList,"MF_other",1)>0 then response.Write "checked"%>>
  234.                     其他</td>
  235.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  236.                       <tr> 
  237.                         <td> <input name="PopList" type="checkbox" id="PopList" value="MF024" <%if InStr(1,str_PopList,"MF024",1)>0 then response.Write "checked"%>>
  238.                           修改密码<input name="PopList" type="checkbox" id="PopList" value="MF025" <%if InStr(1,str_PopList,"MF025",1)>0 then response.Write "checked"%>>
  239.                           上传文件<input name="PopList" type="checkbox" id="PopList" value="MF026" <%if InStr(1,str_PopList,"MF026",1)>0 then response.Write "checked"%>>
  240.                           重命名文件/文件夹<input name="PopList" type="checkbox" id="PopList" value="MF027" <%if InStr(1,str_PopList,"MF027",1)>0 then response.Write "checked"%>>
  241.                           删除文件/目录<input name="PopList" type="checkbox" id="PopList" value="MF028" <%if InStr(1,str_PopList,"MF028",1)>0 then response.Write "checked"%>>
  242.                           新建目录</td>
  243.                       </tr>
  244.                     </table></td>
  245.                 </tr>
  246.               </table></td>
  247.           </tr>
  248.   <%
  249. end if
  250. if Request.Cookies("FoosunSUBCookie")("FoosunSUBNS")=1 then
  251.   %>
  252.           <tr  class="hback_1"> 
  253.             <td colspan="2" class="hback_1"> <div align="left"> <strong> 
  254.                 <input name="PopList_NS" type="checkbox" id="PopList" value="NS_Pop"  onClick="SwitchPopType('NS_Pop');" <%if InStr(1,str_PopList,"NS_Pop",1)>0 then response.Write "checked"%>>
  255.                 </strong>NS新闻系统</div></td>
  256.           </tr>
  257.           <tr  class="hback"> 
  258.             <td colspan="2" class="hback">
  259. <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"NS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="NS_ID">
  260.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  261.                   <td width="14%" class="hback"><div align="left"> 
  262.                       <input name="PopList" type="checkbox" id="PopList" value="NS_News" <%if InStr(1,str_PopList,"NS_News",1)>0 then response.Write "checked"%>>
  263.                       新闻管理</div></td>
  264.                   <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2" <%if InStr(1,str_PopList,"MF010",1)>0 then response.Write "checked"%>>
  265.                       <tr> 
  266.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS001" <%if InStr(1,str_PopList,"NS001",1)>0 then response.Write "checked"%>>
  267.                           添加 
  268.                           <input name="PopList" type="checkbox" id="PopList" value="NS002" <%if InStr(1,str_PopList,"NS002",1)>0 then response.Write "checked"%>>
  269.                           修改 
  270.                           <input name="PopList" type="checkbox" id="PopList" value="NS003" <%if InStr(1,str_PopList,"NS003",1)>0 then response.Write "checked"%>>
  271.                           删除 
  272.                           <input name="PopList" type="checkbox" id="PopList" value="NS004" <%if InStr(1,str_PopList,"NS004",1)>0 then response.Write "checked"%>>
  273.                           审核 
  274.                           <input name="PopList" type="checkbox" id="PopList" value="NS005" <%if InStr(1,str_PopList,"NS005",1)>0 then response.Write "checked"%>>
  275.                           锁定 
  276.                           <input name="PopList" type="checkbox" id="PopList" value="NS006" <%if InStr(1,str_PopList,"NS006",1)>0 then response.Write "checked"%>>
  277.                           设置权重 
  278.                           <input name="PopList" type="checkbox" id="PopList" value="NS007" <%if InStr(1,str_PopList,"NS007",1)>0 then response.Write "checked"%>>
  279. 复制
  280. <input name="PopList" type="checkbox" id="PopList" value="NS008" <%if InStr(1,str_PopList,"NS008",1)>0 then response.Write "checked"%>>
  281.                           锁定 
  282.                           <input name="PopList" type="checkbox" id="PopList" value="NS009" <%if InStr(1,str_PopList,"NS009",1)>0 then response.Write "checked"%>>
  283.                           移动 
  284.                           <input name="PopList" type="checkbox" id="PopList" value="NS010" <%if InStr(1,str_PopList,"NS010",1)>0 then response.Write "checked"%>>
  285.                           替换 
  286.                           <input name="PopList" type="checkbox" id="PopList" value="NS011" <%if InStr(1,str_PopList,"NS011",1)>0 then response.Write "checked"%>>
  287.                           生成 
  288.                           <input name="PopList" type="checkbox" id="PopList" value="NS012" <%if InStr(1,str_PopList,"NS012",1)>0 then response.Write "checked"%>>
  289.                           加入JS
  290.                           <input name="PopList" type="checkbox" id="PopList" value="NS013" <%if InStr(1,str_PopList,"NS013",1)>0 then response.Write "checked"%>>
  291.                           <strong>管理所有</strong></td>
  292.                       </tr>
  293.                     </table></td>
  294.                 </tr>
  295.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  296.                   <td class="hback"><div align="left"> 
  297.                       <input name="PopList" type="checkbox" id="PopList" value="NS_Class" <%if InStr(1,str_PopList,"NS_Class",1)>0 then response.Write "checked"%>>
  298.                       栏目管理</div></td>
  299.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  300.                       <tr> 
  301.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS016" <%if InStr(1,str_PopList,"NS016",1)>0 then response.Write "checked"%>>
  302.                           添加 
  303.                           <input name="PopList" type="checkbox" id="PopList" value="NS017" <%if InStr(1,str_PopList,"NS017",1)>0 then response.Write "checked"%>>
  304.                           修改 
  305.                           <input name="PopList" type="checkbox" id="PopList" value="NS018" <%if InStr(1,str_PopList,"NS018",1)>0 then response.Write "checked"%>>
  306.                           复位 
  307.                           <input name="PopList" type="checkbox" id="PopList" value="NS019" <%if InStr(1,str_PopList,"NS019",1)>0 then response.Write "checked"%>>
  308.                           合并 
  309.                           <input name="PopList" type="checkbox" id="PopList" value="NS020" <%if InStr(1,str_PopList,"NS020",1)>0 then response.Write "checked"%>>
  310.                           转移 
  311.                           <input name="PopList" type="checkbox" id="PopList" value="NS021" <%if InStr(1,str_PopList,"NS021",1)>0 then response.Write "checked"%>>
  312.                           删除 
  313.                           <input name="PopList" type="checkbox" id="PopList" value="NS022" <%if InStr(1,str_PopList,"NS022",1)>0 then response.Write "checked"%>>
  314.                           xml(RSS) 
  315.                           
  316.                           <input name="PopList" type="checkbox" id="PopList" value="NS023" <%if InStr(1,str_PopList,"NS023",1)>0 then response.Write "checked"%>> 
  317.                           清空
  318.                           <input name="PopList" type="checkbox" id="PopList" value="NS024" <%if InStr(1,str_PopList,"NS024",1)>0 then response.Write "checked"%>>
  319.                           排序</td>
  320.                       </tr>
  321.                     </table></td>
  322.                 </tr>
  323.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  324.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Special" <%if InStr(1,str_PopList,"NS_Special",1)>0 then response.Write "checked"%>>
  325.                     专题管理</td>
  326.                   <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  327.                       <tr> 
  328.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS026" <%if InStr(1,str_PopList,"NS026",1)>0 then response.Write "checked"%>>
  329.                           添加 
  330.                             <input name="PopList" type="checkbox" id="PopList" value="NS027" <%if InStr(1,str_PopList,"NS027",1)>0 then response.Write "checked"%>>
  331.                           修改 
  332.                           <input name="PopList" type="checkbox" id="PopList" value="NS028" <%if InStr(1,str_PopList,"NS028",1)>0 then response.Write "checked"%>>
  333.                           锁定 </td>
  334.                       </tr>
  335.                     </table></td>
  336.                 </tr>
  337.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  338.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Constr" <%if InStr(1,str_PopList,"NS_Constr",1)>0 then response.Write "checked"%>>
  339.                     投稿管理</td>
  340.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  341.                       <tr> 
  342.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS030" <%if InStr(1,str_PopList,"NS030",1)>0 then response.Write "checked"%>>
  343.                           审核 
  344.                           <input name="PopList" type="checkbox" id="PopList" value="NS031" <%if InStr(1,str_PopList,"NS031",1)>0 then response.Write "checked"%>>
  345.                           锁定 
  346.                           <input name="PopList" type="checkbox" id="PopList" value="NS032" <%if InStr(1,str_PopList,"NS032",1)>0 then response.Write "checked"%>>
  347.                           删除 
  348.                           <input name="PopList" type="checkbox" id="PopList" value="NS033" <%if InStr(1,str_PopList,"NS033",1)>0 then response.Write "checked"%>>
  349.                           退稿
  350.                           <input name="PopList" type="checkbox" id="PopList" value="NS034" <%if InStr(1,str_PopList,"NS034",1)>0 then response.Write "checked"%>>
  351. 统计</td>
  352.                       </tr>
  353.                     </table></td>
  354.                 </tr>
  355.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  356.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Templet" <%if InStr(1,str_PopList,"NS_Templet",1)>0 then response.Write "checked"%>>
  357.                     捆绑模板</td>
  358.                   <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  359.                       <tr> 
  360.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS036" <%if InStr(1,str_PopList,"NS036",1)>0 then response.Write "checked"%>>
  361.                           开启</td>
  362.                       </tr>
  363.                     </table></td>
  364.                 </tr>
  365.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  366.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Freejs" <%if InStr(1,str_PopList,"NS_Freejs",1)>0 then response.Write "checked"%>>
  367.                     自由JS管理</td>
  368.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  369.                       <tr> 
  370.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS037" <%if InStr(1,str_PopList,"NS037",1)>0 then response.Write "checked"%>>
  371.                           增加 
  372.                           <input name="PopList" type="checkbox" id="PopList" value="NS038" <%if InStr(1,str_PopList,"NS038",1)>0 then response.Write "checked"%>>
  373.                           修改 
  374.                           <input name="PopList" type="checkbox" id="PopList" value="NS039" <%if InStr(1,str_PopList,"NS039",1)>0 then response.Write "checked"%>>
  375.                           删除                          </td>
  376.                       </tr>
  377.                     </table></td>
  378.                 </tr>
  379.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  380.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Sysjs" <%if InStr(1,str_PopList,"NS_Sysjs",1)>0 then response.Write "checked"%>>
  381.                     系统JS管理</td>
  382.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  383.                       <tr> 
  384.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS040" <%if InStr(1,str_PopList,"NS040",1)>0 then response.Write "checked"%>>
  385.                           增加 
  386.                           <input name="PopList" type="checkbox" id="PopList" value="NS041" <%if InStr(1,str_PopList,"NS041",1)>0 then response.Write "checked"%>>
  387.                           修改 
  388.                           <input name="PopList" type="checkbox" id="PopList" value="NS042" <%if InStr(1,str_PopList,"NS042",1)>0 then response.Write "checked"%>>
  389.                           删除                          </td>
  390.                       </tr>
  391.                     </table></td>
  392.                 </tr>
  393.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  394.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Recyle" <%if InStr(1,str_PopList,"NS_Recyle",1)>0 then response.Write "checked"%>>
  395.                     回收站管理</td>
  396.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  397.                       <tr> 
  398.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS043" <%if InStr(1,str_PopList,"NS043",1)>0 then response.Write "checked"%>>
  399.                           恢复 
  400.                           <input name="PopList" type="checkbox" id="PopList" value="NS044" <%if InStr(1,str_PopList,"NS044",1)>0 then response.Write "checked"%>>
  401.                           删除 </td>
  402.                       </tr>
  403.                     </table></td>
  404.                 </tr>
  405.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  406.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_UnRl" <%if InStr(1,str_PopList,"NS_UnRl",1)>0 then response.Write "checked"%>>
  407.                     不规则新闻</td>
  408.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  409.                       <tr> 
  410.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS045" <%if InStr(1,str_PopList,"NS045",1)>0 then response.Write "checked"%>>
  411.                           增加 
  412.                           <input name="PopList" type="checkbox" id="PopList" value="NS046" <%if InStr(1,str_PopList,"NS046",1)>0 then response.Write "checked"%>>
  413.                           修改 
  414.                           <input name="PopList" type="checkbox" id="PopList" value="NS047" <%if InStr(1,str_PopList,"NS047",1)>0 then response.Write "checked"%>>
  415.                           删除</td>
  416.                       </tr>
  417.                     </table></td>
  418.                 </tr>
  419.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  420.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Genal" <%if InStr(1,str_PopList,"NS_Genal",1)>0 then response.Write "checked"%>>
  421.                     常规管理</td>
  422.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  423.                       <tr> 
  424.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS048" <%if InStr(1,str_PopList,"NS048",1)>0 then response.Write "checked"%>>
  425.                           开启</td>
  426.                       </tr>
  427.                     </table></td>
  428.                 </tr>
  429.                 <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  430.                   <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="NS_Param" <%if InStr(1,str_PopList,"NS_Param",1)>0 then response.Write "checked"%>>
  431.                     系统参数设置</td>
  432.                   <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  433.                       <tr> 
  434.                         <td><input name="PopList" type="checkbox" id="PopList" value="NS049" <%if InStr(1,str_PopList,"NS049",1)>0 then response.Write "checked"%>>
  435.                           开启</td>
  436.                       </tr>
  437.                     </table></td>
  438.                 </tr>
  439.               </table></td>
  440.           </tr>
  441.   <%
  442. end if
  443. if Request.Cookies("FoosunSUBCookie")("FoosunSUBMS")=1 then
  444.   %>
  445.           <tr  class="hback_1"> 
  446.             <td colspan="2" class="hback_1"> <div align="left"> <strong> 
  447.                 <input name="PopList_MS" type="checkbox" id="PopList" value="MS_Pop"  onClick="SwitchPopType('MS_Pop');"  <%if InStr(1,str_PopList,"MS_Pop",1)>0 then response.Write "checked"%>>
  448.                 </strong>MS商城系统</div></td>
  449.           </tr>
  450.           <tr class="hback"> 
  451.             <td colspan="2" class="hback"><div align="left"> 
  452.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"MS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="MS_ID">
  453.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  454.                     <td width="14%" class="hback"><div align="left"> 
  455.                         <input name="PopList" type="checkbox" id="PopList" value="MS_Products" <%if InStr(1,str_PopList,"MS_Products",1)>0 then response.Write "checked"%>>
  456.                         商品管理</div></td>
  457.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  458.                         <tr> 
  459.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS001" <%if InStr(1,str_PopList,"MS001",1)>0 then response.Write "checked"%>>
  460.                             添加 
  461.                             <input name="PopList" type="checkbox" id="PopList" value="MS002" <%if InStr(1,str_PopList,"MS002",1)>0 then response.Write "checked"%>>
  462.                             修改 
  463.                             <input name="PopList" type="checkbox" id="PopList" value="MS003" <%if InStr(1,str_PopList,"MS003",1)>0 then response.Write "checked"%>>
  464.                             删除 
  465.                             <input name="PopList" type="checkbox" id="PopList" value="MS004" <%if InStr(1,str_PopList,"MS004",1)>0 then response.Write "checked"%>>
  466.                             审核 
  467.                             <input name="PopList" type="checkbox" id="PopList" value="MS005" <%if InStr(1,str_PopList,"MS005",1)>0 then response.Write "checked"%>>
  468.                             锁定 
  469.                             <input name="PopList" type="checkbox" id="PopList" value="MS006" <%if InStr(1,str_PopList,"MS006",1)>0 then response.Write "checked"%>> 
  470.                             置顶
  471.                             <input name="PopList" type="checkbox" id="PopList" value="MS007" <%if InStr(1,str_PopList,"MS007",1)>0 then response.Write "checked"%>>
  472. 热点推荐</td>
  473.                         </tr>
  474.                       </table></td>
  475.                   </tr>
  476.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  477.                     <td class="hback"><div align="left"> 
  478.                         <input name="PopList" type="checkbox" id="PopList" value="MS_Class" <%if InStr(1,str_PopList,"MS_Class",1)>0 then response.Write "checked"%>>
  479.                         类别栏目</div></td>
  480.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  481.                         <tr> 
  482.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS010" <%if InStr(1,str_PopList,"MS010",1)>0 then response.Write "checked"%>>
  483.                             添加 
  484.                             <input name="PopList" type="checkbox" id="PopList" value="MS011" <%if InStr(1,str_PopList,"MS011",1)>0 then response.Write "checked"%>>
  485.                             修改 
  486.                             <input name="PopList" type="checkbox" id="PopList" value="MS012" <%if InStr(1,str_PopList,"MS012",1)>0 then response.Write "checked"%>>
  487.                             删除 
  488.                             <input name="PopList" type="checkbox" id="PopList" value="MS013" <%if InStr(1,str_PopList,"MS013",1)>0 then response.Write "checked"%>>
  489. 排序 
  490. <input name="PopList" type="checkbox" id="PopList" value="MS014" <%if InStr(1,str_PopList,"MS014",1)>0 then response.Write "checked"%>>
  491. 复位 
  492. <input name="PopList" type="checkbox" id="PopList" value="MS015" <%if InStr(1,str_PopList,"MS015",1)>0 then response.Write "checked"%>>
  493. 合并 
  494. <input name="PopList" type="checkbox" id="PopList" value="MS016" <%if InStr(1,str_PopList,"MS016",1)>0 then response.Write "checked"%>>
  495. 清空 </td>
  496.                         </tr>
  497.                       </table></td>
  498.                   </tr>
  499.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  500.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MS_Special" <%if InStr(1,str_PopList,"MS_Special",1)>0 then response.Write "checked"%>>
  501.                     专区管理</td>
  502.                     <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  503.                         <tr> 
  504.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS017" <%if InStr(1,str_PopList,"MS017",1)>0 then response.Write "checked"%>>
  505.                             添加 
  506.                             <input name="PopList" type="checkbox" id="PopList" value="MS018" <%if InStr(1,str_PopList,"MS018",1)>0 then response.Write "checked"%>>
  507.                             修改
  508.                             <input name="PopList" type="checkbox" id="PopList" value="MS019" <%if InStr(1,str_PopList,"MS019",1)>0 then response.Write "checked"%>>
  509. 删除
  510. <input name="PopList" type="checkbox" id="PopList" value="MS020" <%if InStr(1,str_PopList,"MS020",1)>0 then response.Write "checked"%>>
  511. 锁定</td>
  512.                         </tr>
  513.                       </table></td>
  514.                   </tr>
  515.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  516.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MS_order" <%if InStr(1,str_PopList,"MS_order",1)>0 then response.Write "checked"%>>
  517.                     定单管理</td>
  518.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  519.                         <tr> 
  520.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS021" <%if InStr(1,str_PopList,"MS021",1)>0 then response.Write "checked"%>>
  521.                             开启</td>
  522.                         </tr>
  523.                       </table></td>
  524.                   </tr>
  525.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  526.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MS_WrOut" <%if InStr(1,str_PopList,"MS_WrOut",1)>0 then response.Write "checked"%>>
  527.                     退货管理</td>
  528.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  529.                         <tr> 
  530.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS022" <%if InStr(1,str_PopList,"MS022",1)>0 then response.Write "checked"%>>
  531.                             开启</td>
  532.                         </tr>
  533.                       </table></td>
  534.                   </tr>
  535.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  536.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MS_Company" <%if InStr(1,str_PopList,"MS_Company",1)>0 then response.Write "checked"%>>
  537.                     物流公司</td>
  538.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  539.                         <tr> 
  540.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS023" <%if InStr(1,str_PopList,"MS023",1)>0 then response.Write "checked"%>>
  541.                             开启</td>
  542.                         </tr>
  543.                       </table></td>
  544.                   </tr>
  545.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  546.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MS_Recycle" <%if InStr(1,str_PopList,"MS_Recycle",1)>0 then response.Write "checked"%>>
  547.                     回收站管理</td>
  548.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  549.                         <tr> 
  550.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS024" <%if InStr(1,str_PopList,"MS024",1)>0 then response.Write "checked"%>>
  551.                             开启</td>
  552.                         </tr>
  553.                       </table></td>
  554.                   </tr>
  555.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  556.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="MS_Param" <%if InStr(1,str_PopList,"MS_Param",1)>0 then response.Write "checked"%>>
  557.                     系统参数</td>
  558.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  559.                         <tr> 
  560.                           <td><input name="PopList" type="checkbox" id="PopList" value="MS025" <%if InStr(1,str_PopList,"MS025",1)>0 then response.Write "checked"%>>
  561.                             开启</td>
  562.                         </tr>
  563.                       </table></td>
  564.                   </tr>
  565.                 </table>
  566.               </div></td>
  567.           </tr>
  568.   <%
  569. end if
  570. if Request.Cookies("FoosunSUBCookie")("FoosunSUBDS")=1 then
  571.   %>
  572.           <tr  class="hback_1"> 
  573.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  574.               <input name="PopList_DS" type="checkbox" id="PopList_DS" value="DS_Pop"  onClick="SwitchPopType('DS_Pop');" <%if InStr(1,str_PopList,"DS_Pop",1)>0 then response.Write "checked"%>>
  575.             </strong>DS下载系统</div></td>
  576.           </tr>
  577.           <tr class="hback"> 
  578.             <td colspan="2" class="hback"><div align="left"> 
  579.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"DS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="DS_ID">
  580.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  581.                     <td width="14%" class="hback"><div align="left"> 
  582.                         <input name="PopList" type="checkbox" id="PopList" value="Down_List" <%if InStr(1,str_PopList,"Down_List",1)>0 then response.Write "checked"%>>
  583.                         下载列表管理</div></td>
  584.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  585.                         <tr> 
  586.                           <td><input name="PopList" type="checkbox" id="PopList" value="DS001" <%if InStr(1,str_PopList,"DS001",1)>0 then response.Write "checked"%>>
  587.                             添加 
  588.                             <input name="PopList" type="checkbox" id="PopList" value="DS002" <%if InStr(1,str_PopList,"DS002",1)>0 then response.Write "checked"%>>
  589.                             修改 
  590.                             <input name="PopList" type="checkbox" id="PopList" value="DS003" <%if InStr(1,str_PopList,"DS003",1)>0 then response.Write "checked"%>>
  591.                             删除 
  592.                              
  593.                             <input name="PopList" type="checkbox" id="PopList" value="DS005" <%if InStr(1,str_PopList,"DS005",1)>0 then response.Write "checked"%>>
  594.                             锁定                          </td>
  595.                         </tr>
  596.                       </table></td>
  597.                   </tr>
  598.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  599.                     <td class="hback"><div align="left"> 
  600.                         <input name="PopList" type="checkbox" id="PopList" value="DS_Class" <%if InStr(1,str_PopList,"DS_Class",1)>0 then response.Write "checked"%>>
  601.                         栏目管理</div></td>
  602.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  603.                         <tr> 
  604.                           <td><input name="PopList" type="checkbox" id="PopList" value="DS010" <%if InStr(1,str_PopList,"DS010",1)>0 then response.Write "checked"%>>
  605.                             添加 
  606.                             <input name="PopList" type="checkbox" id="PopList" value="DS011" <%if InStr(1,str_PopList,"DS011",1)>0 then response.Write "checked"%>>
  607.                             修改 
  608.                             <input name="PopList" type="checkbox" id="PopList" value="DS012" <%if InStr(1,str_PopList,"DS012",1)>0 then response.Write "checked"%>>
  609.                             删除 
  610.                             <input name="PopList" type="checkbox" id="PopList" value="DS013" <%if InStr(1,str_PopList,"DS013",1)>0 then response.Write "checked"%>>
  611. 排序 
  612. <input name="PopList" type="checkbox" id="PopList" value="DS014" <%if InStr(1,str_PopList,"DS014",1)>0 then response.Write "checked"%>>
  613. 复位 
  614. <input name="PopList" type="checkbox" id="PopList" value="DS015"  <%if InStr(1,str_PopList,"DS015",1)>0 then response.Write "checked"%>>
  615. 合并 
  616. <input name="PopList" type="checkbox" id="PopList" value="DS016"  <%if InStr(1,str_PopList,"DS016",1)>0 then response.Write "checked"%>>
  617. 清空 </td>
  618.                         </tr>
  619.                       </table></td>
  620.                   </tr>
  621.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  622.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="DS_Param" <%if InStr(1,str_PopList,"DS_Param",1)>0 then response.Write "checked"%>>
  623.                     参数设置</td>
  624.                     <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  625.                         <tr> 
  626.                           <td><input name="PopList" type="checkbox" id="PopList" value="DS017" <%if InStr(1,str_PopList,"DS017",1)>0 then response.Write "checked"%>>
  627.                             开启</td>
  628.                         </tr>
  629.                       </table></td>
  630.                   </tr>
  631.                 </table>
  632.               </div></td>
  633.           </tr>
  634.   <%
  635. end if
  636. if Request.Cookies("FoosunSUBCookie")("FoosunSUBME")=1 then
  637.   %>
  638.           <tr  class="hback_1"> 
  639.             <td colspan="2" class="hback_1"> <div align="left"> <strong> 
  640.                 <input name="PopList_ME" type="checkbox" id="PopList" value="ME_Pop"  onClick="SwitchPopType('ME_Pop');"  <%if InStr(1,str_PopList,"ME_Pop",1)>0 then response.Write "checked"%>>
  641.                 </strong>ME会员系统</div></td>
  642.           </tr>
  643.           <tr class="hback"> 
  644.             <td colspan="2" class="hback"><div align="left"> 
  645.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"ME_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="ME_ID">
  646.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  647.                     <td width="14%" class="hback"><div align="left"> 
  648.                         <input name="PopList" type="checkbox" id="PopList" value="ME_List" <%if InStr(1,str_PopList,"ME_List",1)>0 then response.Write "checked"%>>
  649.                         会员管理</div></td>
  650.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  651.                         <tr> 
  652.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME001" <%if InStr(1,str_PopList,"ME001",1)>0 then response.Write "checked"%>>
  653.                             开启</td>
  654.                         </tr>
  655.                       </table></td>
  656.                   </tr>
  657.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  658.                     <td class="hback"><div align="left"> 
  659.                         <input name="PopList" type="checkbox" id="PopList" value="ME_Intergel" <%if InStr(1,str_PopList,"ME_Intergel",1)>0 then response.Write "checked"%>>
  660.                         积分管理</div></td>
  661.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  662.                         <tr> 
  663.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME002" <%if InStr(1,str_PopList,"ME002",1)>0 then response.Write "checked"%>>
  664.                           开启</td>
  665.                         </tr>
  666.                       </table></td>
  667.                   </tr>
  668.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  669.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Card" <%if InStr(1,str_PopList,"ME_Card",1)>0 then response.Write "checked"%>>
  670.                     点卡管理</td>
  671.                     <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  672.                         <tr> 
  673.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME017" <%if InStr(1,str_PopList,"ME017",1)>0 then response.Write "checked"%>>
  674.                             添加 
  675.                             <input name="PopList" type="checkbox" id="PopList" value="ME018" <%if InStr(1,str_PopList,"ME018",1)>0 then response.Write "checked"%>>
  676.                             修改
  677.                             <input name="PopList" type="checkbox" id="PopList" value="ME019" <%if InStr(1,str_PopList,"ME019",1)>0 then response.Write "checked"%>>
  678. 删除</td>
  679.                         </tr>
  680.                       </table></td>
  681.                   </tr>
  682.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  683.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_News" <%if InStr(1,str_PopList,"ME_News",1)>0 then response.Write "checked"%>>
  684.                     公告管理</td>
  685.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  686.                         <tr> 
  687.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME021" <%if InStr(1,str_PopList,"ME021",1)>0 then response.Write "checked"%>>
  688.                             开启</td>
  689.                         </tr>
  690.                       </table></td>
  691.                   </tr>
  692.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  693.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Form" <%if InStr(1,str_PopList,"ME_Form",1)>0 then response.Write "checked"%>>
  694.                     社群管理</td>
  695.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  696.                         <tr> 
  697.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME022" <%if InStr(1,str_PopList,"ME022",1)>0 then response.Write "checked"%>>
  698.                             新建
  699.                               <input name="PopList" type="checkbox" id="PopList" value="ME023" <%if InStr(1,str_PopList,"ME023",1)>0 then response.Write "checked"%>>
  700.                             修改
  701.                             <input name="PopList" type="checkbox" id="PopList" value="ME024" <%if InStr(1,str_PopList,"ME024",1)>0 then response.Write "checked"%>>
  702. 删除<input name="PopList" type="checkbox" id="PopList" value="ME025"  <%if InStr(1,str_PopList,"ME025",1)>0 then response.Write "checked"%>>
  703. 锁定</td>
  704.                         </tr>
  705.                       </table></td>
  706.                   </tr>
  707.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  708.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_HY" <%if InStr(1,str_PopList,"ME_HY",1)>0 then response.Write "checked"%>>
  709.                     行业管理</td>
  710.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  711.                         <tr> 
  712.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME026" <%if InStr(1,str_PopList,"ME026",1)>0 then response.Write "checked"%>>
  713.                             开启</td>
  714.                         </tr>
  715.                       </table></td>
  716.                   </tr>
  717.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  718.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_award" <%if InStr(1,str_PopList,"ME_award",1)>0 then response.Write "checked"%>>
  719.                     抽奖管理</td>
  720.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  721.                         <tr> 
  722.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME027" <%if InStr(1,str_PopList,"ME027",1)>0 then response.Write "checked"%>>
  723.                             新建
  724.                               <input name="PopList" type="checkbox" id="PopList" value="ME028" <%if InStr(1,str_PopList,"ME028",1)>0 then response.Write "checked"%>>
  725.                             修改
  726.                             <input name="PopList" type="checkbox" id="PopList" value="ME029" <%if InStr(1,str_PopList,"ME029",1)>0 then response.Write "checked"%>>
  727. 删除<input name="PopList" type="checkbox" id="PopList" value="ME030"  <%if InStr(1,str_PopList,"ME030",1)>0 then response.Write "checked"%>>
  728. 开奖</td>
  729.                         </tr>
  730.                       </table></td>
  731.                   </tr>
  732.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  733.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Order" <%if InStr(1,str_PopList,"ME_Order",1)>0 then response.Write "checked"%>>
  734.                     定单管理(在线支付)</td>
  735.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  736.                         <tr> 
  737.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME031" <%if InStr(1,str_PopList,"ME031",1)>0 then response.Write "checked"%>>
  738.                             开启</td>
  739.                         </tr>
  740.                       </table></td>
  741.                   </tr>
  742.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  743.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Mproducts" <%if InStr(1,str_PopList,"ME_Mproducts",1)>0 then response.Write "checked"%>>
  744.                     添加会员商品</td>
  745.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  746.                         <tr> 
  747.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME032" <%if InStr(1,str_PopList,"ME032",1)>0 then response.Write "checked"%>>
  748.                           开启</td>
  749.                         </tr>
  750.                       </table></td>
  751.                   </tr>
  752.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  753.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Horder" <%if InStr(1,str_PopList,"ME_Horder",1)>0 then response.Write "checked"%>>
  754.                     交易明晰</td>
  755.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  756.                         <tr> 
  757.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME033" <%if InStr(1,str_PopList,"ME033",1)>0 then response.Write "checked"%>>
  758.                           开启</td>
  759.                         </tr>
  760.                       </table></td>
  761.                   </tr>
  762.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  763.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_GUser" <%if InStr(1,str_PopList,"ME_GUser",1)>0 then response.Write "checked"%>>
  764.                     会员组</td>
  765.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  766.                         <tr> 
  767.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME034" <%if InStr(1,str_PopList,"ME034",1)>0 then response.Write "checked"%>>
  768.                             新建
  769.                               <input name="PopList" type="checkbox" id="PopList" value="ME035" <%if InStr(1,str_PopList,"ME035",1)>0 then response.Write "checked"%>>
  770.                             修改
  771.                             <input name="PopList" type="checkbox" id="PopList" value="ME036" <%if InStr(1,str_PopList,"ME036",1)>0 then response.Write "checked"%>>
  772. 删除</td>
  773.                         </tr>
  774.                       </table></td>
  775.                   </tr>
  776.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  777.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Jubao" <%if InStr(1,str_PopList,"ME_Jubao",1)>0 then response.Write "checked"%>>
  778.                     举报管理</td>
  779.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  780.                         <tr> 
  781.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME037" <%if InStr(1,str_PopList,"ME037",1)>0 then response.Write "checked"%>>
  782.                             开启</td>
  783.                         </tr>
  784.                       </table></td>
  785.                   </tr>
  786.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  787.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Review" <%if InStr(1,str_PopList,"ME_Review",1)>0 then response.Write "checked"%>>
  788.                     评论管理</td>
  789.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  790.                         <tr> 
  791.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME038" <%if InStr(1,str_PopList,"ME038",1)>0 then response.Write "checked"%>>
  792.                           开启</td>
  793.                         </tr>
  794.                       </table></td>
  795.                   </tr>
  796.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  797.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Log" <%if InStr(1,str_PopList,"ME_Log",1)>0 then response.Write "checked"%>>
  798.                     日志管理</td>
  799.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  800.                         <tr> 
  801.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME039" <%if InStr(1,str_PopList,"ME039",1)>0 then response.Write "checked"%>>
  802.                           开启</td>
  803.                         </tr>
  804.                       </table></td>
  805.                   </tr>
  806.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  807.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Photo" <%if InStr(1,str_PopList,"ME_Photo",1)>0 then response.Write "checked"%>>
  808.                     相册管理</td>
  809.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  810.                         <tr> 
  811.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME040" <%if InStr(1,str_PopList,"ME040",1)>0 then response.Write "checked"%>>
  812.                             开启</td>
  813.                         </tr>
  814.                       </table></td>
  815.                   </tr>
  816.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  817.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Param" <%if InStr(1,str_PopList,"ME_Param",1)>0 then response.Write "checked"%>>
  818.                     参数设置</td>
  819.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  820.                         <tr> 
  821.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME041" <%if InStr(1,str_PopList,"ME041",1)>0 then response.Write "checked"%>>
  822.                             开启</td>
  823.                         </tr>
  824.                       </table></td>
  825.                   </tr>
  826.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  827.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="ME_Pay" <%if InStr(1,str_PopList,"ME_Pay",1)>0 then response.Write "checked"%>>
  828.                     在线支付</td>
  829.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  830.                         <tr> 
  831.                           <td><input name="PopList" type="checkbox" id="PopList" value="ME042" <%if InStr(1,str_PopList,"ME042",1)>0 then response.Write "checked"%>>
  832.                             开启</td>
  833.                         </tr>
  834.                       </table></td>
  835.                   </tr>
  836.                 </table>
  837.               </div></td>
  838.           </tr>
  839.   <%
  840. end if
  841. if Request.Cookies("FoosunSUBCookie")("FoosunSUBAP")=1 then
  842.   %>
  843.           <tr  class="hback_1"> 
  844.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  845.               <input name="PopList_AP" type="checkbox" id="PopList_AP" value="AP_Pop"  onClick="SwitchPopType('AP_Pop');" <%if InStr(1,str_PopList,"AP_Pop",1)>0 then response.Write "checked"%>>
  846.             </strong>AP招聘求职系统</div></td>
  847.           </tr>
  848.           <tr class="hback"> 
  849.             <td colspan="2" class="hback"><div align="left"> 
  850.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"AP_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="AP_ID">
  851.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  852.                     <td width="14%" class="hback"><div align="left"> 
  853.                         <input name="PopList" type="checkbox" id="PopList" value="AP_Param" <%if InStr(1,str_PopList,"AP_Param",1)>0 then response.Write "checked"%>>
  854.                         系统参数设置</div></td>
  855.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  856.                         <tr> 
  857.                           <td><input name="PopList" type="checkbox" id="PopList" value="AP001" <%if InStr(1,str_PopList,"AP001",1)>0 then response.Write "checked"%>>
  858.                             开启</td>
  859.                         </tr>
  860.                       </table></td>
  861.                   </tr>
  862.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  863.                     <td class="hback"><div align="left"> 
  864.                         <input name="PopList" type="checkbox" id="PopList" value="AP_Province" <%if InStr(1,str_PopList,"AP_Province",1)>0 then response.Write "checked"%>>
  865.                         省份设置</div></td>
  866.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  867.                         <tr> 
  868.                           <td><input name="PopList" type="checkbox" id="PopList" value="AP002" <%if InStr(1,str_PopList,"AP002",1)>0 then response.Write "checked"%>>
  869.                             开启</td>
  870.                         </tr>
  871.                       </table></td>
  872.                   </tr>
  873.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  874.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="AP_city" <%if InStr(1,str_PopList,"AP_city",1)>0 then response.Write "checked"%>>
  875.                     城市设置</td>
  876.                     <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  877.                         <tr> 
  878.                           <td><input name="PopList" type="checkbox" id="PopList" value="AP003" <%if InStr(1,str_PopList,"AP003",1)>0 then response.Write "checked"%>>
  879.                             开启</td>
  880.                         </tr>
  881.                       </table></td>
  882.                   </tr>
  883. <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  884.                     <td width="14%" class="hback"><div align="left"> 
  885.                         <input name="PopList" type="checkbox" id="PopList" value="AP_Search" <%if InStr(1,str_PopList,"AP_Search",1)>0 then response.Write "checked"%>>
  886.                         会员记录查询</div></td>
  887.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  888.                         <tr> 
  889.                           <td><input name="PopList" type="checkbox" id="PopList" value="AP004" <%if InStr(1,str_PopList,"AP004",1)>0 then response.Write "checked"%>>
  890.                             开启</td>
  891.                         </tr>
  892.                       </table></td>
  893.                   </tr><tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  894.                     <td width="14%" class="hback"><div align="left"> 
  895.                         <input name="PopList" type="checkbox" id="PopList" value="AP_check" <%if InStr(1,str_PopList,"AP_check",1)>0 then response.Write "checked"%>>
  896.                         注册信息审核</div></td>
  897.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  898.                         <tr> 
  899.                           <td><input name="PopList" type="checkbox" id="PopList" value="AP005" <%if InStr(1,str_PopList,"AP005",1)>0 then response.Write "checked"%>>
  900.                             开启</td>
  901.                         </tr>
  902.                       </table></td>
  903.                   </tr>   
  904.                 </table>
  905.               </div></td>
  906.           </tr>
  907.   <%
  908. end if
  909. if Request.Cookies("FoosunSUBCookie")("FoosunSUBSD")=1 then
  910.   %>
  911.           <tr  class="hback_1"> 
  912.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  913.               <input name="PopList_SD" type="checkbox" id="PopList_SD" value="SD_Pop"  onClick="SwitchPopType('SD_Pop');" <%if InStr(1,str_PopList,"SD_Pop",1)>0 then response.Write "checked"%>>
  914.             </strong>SD供求系统</div></td>
  915.           </tr>
  916.           <tr class="hback"> 
  917.             <td colspan="2" class="hback"><div align="left"> 
  918.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"SD_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="SD_ID">
  919.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  920.                     <td width="14%" class="hback"><div align="left"> 
  921.                         <input name="PopList" type="checkbox" id="PopList" value="SD_List" <%if InStr(1,str_PopList,"SD_List",1)>0 then response.Write "checked"%>>
  922.                         供求信息</div></td>
  923.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  924.                         <tr> 
  925.                           <td><input name="PopList" type="checkbox" id="PopList" value="SD001" <%if InStr(1,str_PopList,"SD001",1)>0 then response.Write "checked"%>>
  926.                             新建
  927.                             <input name="PopList" type="checkbox" id="PopList" value="SD002" <%if InStr(1,str_PopList,"SD002",1)>0 then response.Write "checked"%>>
  928. 修改
  929. <input name="PopList" type="checkbox" id="PopList" value="SD003" <%if InStr(1,str_PopList,"SD003",1)>0 then response.Write "checked"%>>
  930. 删除
  931. <input name="PopList" type="checkbox" id="PopList" value="SD004" <%if InStr(1,str_PopList,"SD004",1)>0 then response.Write "checked"%>>
  932. 审核</td>
  933.                         </tr>
  934.                       </table></td>
  935.                   </tr>
  936.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  937.                     <td class="hback"><div align="left"> 
  938.                         <input name="PopList" type="checkbox" id="PopList" value="SD_Class" <%if InStr(1,str_PopList,"SD_Class",1)>0 then response.Write "checked"%>>
  939.                         类别栏目</div></td>
  940.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  941.                         <tr> 
  942.                           <td><input name="PopList" type="checkbox" id="PopList" value="SD005" <%if InStr(1,str_PopList,"SD005",1)>0 then response.Write "checked"%>>
  943. 新建
  944.   <input name="PopList" type="checkbox" id="PopList" value="SD006" <%if InStr(1,str_PopList,"SD006",1)>0 then response.Write "checked"%>>
  945. 修改
  946. <input name="PopList" type="checkbox" id="PopList" value="SD007" <%if InStr(1,str_PopList,"SD007",1)>0 then response.Write "checked"%>>
  947. 删除</td>
  948.                         </tr>
  949.                       </table></td>
  950.                   </tr>
  951.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  952.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="AP_area" <%if InStr(1,str_PopList,"AP_area",1)>0 then response.Write "checked"%>>
  953.                     区域管理</td>
  954.                     <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  955.                         <tr> 
  956.                           <td><input name="PopList" type="checkbox" id="PopList" value="SD008" <%if InStr(1,str_PopList,"SD008",1)>0 then response.Write "checked"%>>
  957.                             开启</td>
  958.                         </tr>
  959.                       </table></td>
  960.                   </tr>
  961. <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  962.                     <td width="14%" class="hback"><div align="left"> 
  963.                         <input name="PopList" type="checkbox" id="PopList" value="AP_param" <%if InStr(1,str_PopList,"AP_param",1)>0 then response.Write "checked"%>>
  964.                         系统设置</div></td>
  965.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  966.                         <tr> 
  967.                           <td><input name="PopList" type="checkbox" id="PopList" value="SD009" <%if InStr(1,str_PopList,"SD009",1)>0 then response.Write "checked"%>>
  968.                             开启</td>
  969.                         </tr>
  970.                       </table></td>
  971.                   </tr>   
  972.                 </table>
  973.               </div></td>
  974.           </tr>
  975.   <%
  976. end if
  977. if Request.Cookies("FoosunSUBCookie")("FoosunSUBCS")=1 then
  978.   %>
  979.           <tr  class="hback_1"> 
  980.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  981.               <input name="PopList_CS" type="checkbox" id="PopList_CS" value="CS_Pop"  onClick="SwitchPopType('CS_Pop');" <%if InStr(1,str_PopList,"CS_Pop",1)>0 then response.Write "checked"%>>
  982.             </strong>CS采集系统</div></td>
  983.           </tr>
  984.           <tr class="hback"> 
  985.             <td colspan="2" class="hback"><div align="left"> 
  986.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"CS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="CS_ID">
  987.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  988.                     <td width="14%" class="hback"><div align="left"> 
  989.                         <input name="PopList" type="checkbox" id="PopList" value="CS_site" <%if InStr(1,str_PopList,"CS_site",1)>0 then response.Write "checked"%>>
  990.                         设置站点</div></td>
  991.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  992.                         <tr> 
  993.                           <td><input name="PopList" type="checkbox" id="PopList" value="CS001" <%if InStr(1,str_PopList,"CS001",1)>0 then response.Write "checked"%>>
  994.                             开启</td>
  995.                         </tr>
  996.                       </table></td>
  997.                   </tr>
  998.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  999.                     <td class="hback"><div align="left"> 
  1000.                         <input name="PopList" type="checkbox" id="PopList" value="CS_collect" <%if InStr(1,str_PopList,"CS_collect",1)>0 then response.Write "checked"%>>
  1001.                         采集</div></td>
  1002.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1003.                         <tr> 
  1004.                           <td><input name="PopList" type="checkbox" id="PopList" value="CS002" <%if InStr(1,str_PopList,"CS002",1)>0 then response.Write "checked"%>>
  1005.                           开启</td>
  1006.                         </tr>
  1007.                       </table></td>
  1008.                   </tr>
  1009.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1010.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="CS_Ink" <%if InStr(1,str_PopList,"CS_Ink",1)>0 then response.Write "checked"%>>
  1011.                     采入数据库</td>
  1012.                     <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  1013.                         <tr> 
  1014.                           <td><input name="PopList" type="checkbox" id="PopList" value="CS003" <%if InStr(1,str_PopList,"CS003",1)>0 then response.Write "checked"%>>
  1015.                             开启</td>
  1016.                         </tr>
  1017.                       </table></td>
  1018.                   </tr>
  1019.                 </table>
  1020.               </div></td>
  1021.           </tr>
  1022.   <%
  1023. end if
  1024. if Request.Cookies("FoosunSUBCookie")("FoosunSUBSS")=1 then
  1025.   %>
  1026.           <tr  class="hback_1"> 
  1027.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  1028.               <input name="PopList_SS" type="checkbox" id="PopList_SS" value="SS_Pop"  onClick="SwitchPopType('SS_Pop');"  <%if InStr(1,str_PopList,"SS_Pop",1)>0 then response.Write "checked"%>>
  1029.             </strong>SS站点统计</div></td>
  1030.           </tr>
  1031.           <tr class="hback"> 
  1032.             <td colspan="2" class="hback"><div align="left"> 
  1033.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"SS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="SS_ID">
  1034.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1035.                     <td width="14%" class="hback"><div align="left"> 
  1036.                         <input name="PopList" type="checkbox" id="PopList" value="SS_site" <%if InStr(1,str_PopList,"SS_site",1)>0 then response.Write "checked"%>>
  1037.                         站点统计</div></td>
  1038.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1039.                         <tr> 
  1040.                           <td><input name="PopList" type="checkbox" id="PopList" value="SS001" <%if InStr(1,str_PopList,"SS001",1)>0 then response.Write "checked"%>>
  1041.                             开启</td>
  1042.                         </tr>
  1043.                       </table></td>
  1044.                   </tr>
  1045.                 </table>
  1046.               </div></td>
  1047.           </tr>
  1048.   <%
  1049. end if
  1050. if Request.Cookies("FoosunSUBCookie")("FoosunSUBHS")=1 then
  1051.   %>
  1052.           <tr  class="hback_1"> 
  1053.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  1054.               <input name="PopList_HS" type="checkbox" id="PopList_HS" value="HS_Pop"  onClick="SwitchPopType('HS_Pop');" <%if InStr(1,str_PopList,"HS_Pop",1)>0 then response.Write "checked"%>>
  1055.             </strong>HS房产楼盘系统</div></td>
  1056.           </tr>
  1057.           <tr class="hback"> 
  1058.             <td colspan="2" class="hback"><div align="left"> 
  1059.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"HS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="HS_ID">
  1060.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1061.                     <td width="14%" class="hback"><div align="left"> 
  1062.                         <input name="PopList" type="checkbox" id="PopList" value="HS_Loup" <%if InStr(1,str_PopList,"HS_Loup",1)>0 then response.Write "checked"%>>
  1063.                         楼盘管理</div></td>
  1064.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1065.                         <tr> 
  1066.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS001" <%if InStr(1,str_PopList,"HS001",1)>0 then response.Write "checked"%>>
  1067.                             新建
  1068.                             <input name="PopList" type="checkbox" id="PopList" value="HS002" <%if InStr(1,str_PopList,"HS002",1)>0 then response.Write "checked"%>>
  1069. 修改
  1070. <input name="PopList" type="checkbox" id="PopList" value="HS003" <%if InStr(1,str_PopList,"HS003",1)>0 then response.Write "checked"%>>
  1071. 删除
  1072. <input name="PopList" type="checkbox" id="PopList" value="HS004" <%if InStr(1,str_PopList,"HS004",1)>0 then response.Write "checked"%>>
  1073. 审核</td>
  1074.                         </tr>
  1075.                       </table></td>
  1076.                   </tr>
  1077.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1078.                     <td class="hback"><div align="left"> 
  1079.                         <input name="PopList" type="checkbox" id="PopList" value="HS_Ero" <%if InStr(1,str_PopList,"HS_Ero",1)>0 then response.Write "checked"%>>
  1080.                         二手房</div></td>
  1081.                     <td class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1082.                         <tr> 
  1083.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS005" <%if InStr(1,str_PopList,"HS005",1)>0 then response.Write "checked"%>>
  1084. 新建
  1085.   <input name="PopList" type="checkbox" id="PopList" value="HS006" <%if InStr(1,str_PopList,"HS006",1)>0 then response.Write "checked"%>>
  1086. 修改
  1087. <input name="PopList" type="checkbox" id="PopList" value="HS007" <%if InStr(1,str_PopList,"HS007",1)>0 then response.Write "checked"%>>
  1088. 删除</td>
  1089.                         </tr>
  1090.                       </table></td>
  1091.                   </tr>
  1092.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1093.                     <td class="hback"><input name="PopList" type="checkbox" id="PopList" value="HS_Zu" <%if InStr(1,str_PopList,"HS_Zu",1)>0 then response.Write "checked"%>>
  1094.                     租赁信息</td>
  1095.                     <td class="hback"> <table width="98%" border="0" cellspacing="0" cellpadding="2">
  1096.                         <tr> 
  1097.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS008" <%if InStr(1,str_PopList,"HS008",1)>0 then response.Write "checked"%>>
  1098.                             开启</td>
  1099.                         </tr>
  1100.                       </table></td>
  1101.                   </tr>
  1102. <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1103.                     <td width="14%" class="hback"><div align="left"> 
  1104.                         <input name="PopList" type="checkbox" id="PopList" value="HS_param" <%if InStr(1,str_PopList,"HS_param",1)>0 then response.Write "checked"%>>
  1105.                         系统设置</div></td>
  1106.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1107.                         <tr> 
  1108.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS009" <%if InStr(1,str_PopList,"HS009",1)>0 then response.Write "checked"%>>
  1109.                             开启</td>
  1110.                         </tr>
  1111.                       </table></td>
  1112.                   </tr>   
  1113. <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1114.                     <td width="14%" class="hback"><div align="left"> 
  1115.                         <input name="PopList" type="checkbox" id="PopList" value="HS_FY" <%if InStr(1,str_PopList,"HS_FY",1)>0 then response.Write "checked"%>>
  1116.                         房源审核</div></td>
  1117.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1118.                         <tr> 
  1119.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS010" <%if InStr(1,str_PopList,"HS010",1)>0 then response.Write "checked"%>>
  1120.                             开启</td>
  1121.                         </tr>
  1122.                       </table></td>
  1123.                   </tr>   
  1124. <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1125.                     <td width="14%" class="hback"><div align="left"> 
  1126.                         <input name="PopList" type="checkbox" id="PopList" value="HS_Search" <%if InStr(1,str_PopList,"HS_Search",1)>0 then response.Write "checked"%>>
  1127.                         查询统计</div></td>
  1128.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1129.                         <tr> 
  1130.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS011" <%if InStr(1,str_PopList,"HS011",1)>0 then response.Write "checked"%>>
  1131.                             开启</td>
  1132.                         </tr>
  1133.                       </table></td>
  1134.                   </tr>   
  1135. <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1136.                     <td width="14%" class="hback"><div align="left"> 
  1137.                         <input name="PopList" type="checkbox" id="PopList" value="HS_CJ" <%if InStr(1,str_PopList,"HS_CJ",1)>0 then response.Write "checked"%>>
  1138.                         厂商管理</div></td>
  1139.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1140.                         <tr> 
  1141.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS012" <%if InStr(1,str_PopList,"HS012",1)>0 then response.Write "checked"%>>
  1142.                             开启</td>
  1143.                         </tr>
  1144.                       </table></td>
  1145.                   </tr>   
  1146. <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1147.                     <td width="14%" class="hback"><div align="left"> 
  1148.                         <input name="PopList" type="checkbox" id="PopList" value="HS_Other" <%if InStr(1,str_PopList,"HS_Other",1)>0 then response.Write "checked"%>>
  1149.                         其他</div></td>
  1150.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1151.                         <tr> 
  1152.                           <td><input name="PopList" type="checkbox" id="PopList" value="HS013" <%if InStr(1,str_PopList,"HS013",1)>0 then response.Write "checked"%>>
  1153.                             回收站管理
  1154.                             <input name="PopList" type="checkbox" id="PopList" value="HS014" <%if InStr(1,str_PopList,"HS014",1)>0 then response.Write "checked"%>>
  1155.                             清理过期房源
  1156.                             <input name="PopList" type="checkbox" id="PopList" value="HS015" <%if InStr(1,str_PopList,"HS015",1)>0 then response.Write "checked"%>>
  1157.                           捆绑模板</td>
  1158.                         </tr>
  1159.                       </table></td>
  1160.                   </tr>   
  1161.                 </table>
  1162.               </div></td>
  1163.           </tr>   
  1164.   <%
  1165. end if
  1166. if Request.Cookies("FoosunSUBCookie")("FoosunSUBVS")=1 then
  1167.   %>
  1168.           <tr  class="hback_1"> 
  1169.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  1170.               <input name="PopList_VS" type="checkbox" id="PopList_VS" value="VS_Pop"  onClick="SwitchPopType('VS_Pop');" <%if InStr(1,str_PopList,"VS_Pop",1)>0 then response.Write "checked"%>>
  1171.             </strong>VS投票管理</div></td>
  1172.           </tr>
  1173.           <tr class="hback"> 
  1174.             <td colspan="2" class="hback"><div align="left"> 
  1175.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"VS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="VS_ID">
  1176.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1177.                     <td width="14%" class="hback"><div align="left"> 
  1178.                         <input name="PopList" type="checkbox" id="PopList" value="VS_site" <%if InStr(1,str_PopList,"VS_site",1)>0 then response.Write "checked"%>>
  1179.                         开启
  1180.                     </div></td>
  1181.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1182.                         <tr> 
  1183.                           <td><input name="PopList" type="checkbox" id="PopList" value="VS001" <%if InStr(1,str_PopList,"VS001",1)>0 then response.Write "checked"%>>
  1184.                             参数设置
  1185.                               <input name="PopList" type="checkbox" id="PopList" value="VS002" <%if InStr(1,str_PopList,"VS002",1)>0 then response.Write "checked"%>>
  1186. 管理
  1187. <input name="PopList" type="checkbox" id="PopList" value="VS003" <%if InStr(1,str_PopList,"VS003",1)>0 then response.Write "checked"%>>
  1188. 查看</td>
  1189.                         </tr>
  1190.                       </table></td>
  1191.                   </tr>
  1192.                 </table>
  1193.               </div></td>
  1194.           </tr>
  1195.   <%
  1196. end if
  1197. if Request.Cookies("FoosunSUBCookie")("FoosunSUBAS")=1 then
  1198.   %>
  1199.           <tr  class="hback_1"> 
  1200.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  1201.               <input name="PopList_AS" type="checkbox" id="PopList_AS" value="AS_Pop"  onClick="SwitchPopType('AS_Pop');" <%if InStr(1,str_PopList,"AS_Pop",1)>0 then response.Write "checked"%>>
  1202.             </strong>AS广告管理系统</div></td>
  1203.           </tr>
  1204.           <tr class="hback"> 
  1205.             <td colspan="2" class="hback"><div align="left"> 
  1206.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"AS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="AS_ID">
  1207.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1208.                     <td width="14%" class="hback"><div align="left"> 
  1209.                         <input name="PopList" type="checkbox" id="PopList" value="AS_site" <%if InStr(1,str_PopList,"AS_site",1)>0 then response.Write "checked"%>>
  1210.                         开启</div></td>
  1211.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1212.                         <tr> 
  1213.                           <td><input name="PopList" type="checkbox" id="PopList" value="AS001" <%if InStr(1,str_PopList,"AS001",1)>0 then response.Write "checked"%>>
  1214. 管理
  1215.   <input name="PopList" type="checkbox" id="PopList" value="AS002" <%if InStr(1,str_PopList,"AS002",1)>0 then response.Write "checked"%>>
  1216. 统计
  1217. <input name="PopList" type="checkbox" id="PopList" value="AS003" <%if InStr(1,str_PopList,"AS003",1)>0 then response.Write "checked"%>>
  1218. 分类</td>
  1219.                         </tr>
  1220.                       </table></td>
  1221.                   </tr>
  1222.                 </table>
  1223.               </div></td>
  1224.           </tr>
  1225.   <%
  1226. end if
  1227. if Request.Cookies("FoosunSUBCookie")("FoosunSUBWS")=1 then
  1228.   %>
  1229.           <tr  class="hback_1"> 
  1230.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  1231.               <input name="PopList_WS" type="checkbox" id="PopList_WS" value="WS_Pop"  onClick="SwitchPopType('WS_Pop');" <%if InStr(1,str_PopList,"WS_Pop",1)>0 then response.Write "checked"%>>
  1232.             </strong>WS留言系统</div></td>
  1233.           </tr>
  1234.           <tr class="hback"> 
  1235.             <td colspan="2" class="hback"><div align="left"> 
  1236.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"WS_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="WS_ID">
  1237.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1238.                     <td width="14%" class="hback"><div align="left"> 
  1239.                         <input name="PopList" type="checkbox" id="PopList" value="WS_site" <%if InStr(1,str_PopList,"WS_site",1)>0 then response.Write "checked"%>>
  1240.                         开启</div></td>
  1241.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1242.                         <tr> 
  1243.                           <td><input name="PopList" type="checkbox" id="PopList" value="WS001" <%if InStr(1,str_PopList,"WS001",1)>0 then response.Write "checked"%>>
  1244.                             查看
  1245.                               <input name="PopList" type="checkbox" id="PopList" value="WS002" <%if InStr(1,str_PopList,"WS002",1)>0 then response.Write "checked"%>>
  1246. 管理</td>
  1247.                         </tr>
  1248.                       </table></td>
  1249.                   </tr>
  1250.                 </table>
  1251.               </div></td>
  1252.           </tr>
  1253.   <%
  1254. end if
  1255. if Request.Cookies("FoosunSUBCookie")("FoosunSUBFL")=1 then
  1256.   %>
  1257.           <tr  class="hback_1"> 
  1258.             <td colspan="2" class="hback_1"> <div align="left"><strong>
  1259.               <input name="PopList_FL" type="checkbox" id="PopList_FL" value="FL_Pop"  onClick="SwitchPopType('FL_Pop');" <%if InStr(1,str_PopList,"FL_Pop",1)>0 then response.Write "checked"%>>
  1260.             </strong>FL友情联接系统</div></td>
  1261.           </tr>
  1262.           <tr class="hback"> 
  1263.             <td colspan="2" class="hback"><div align="left"> 
  1264.                 <table width="100%" border="0" cellspacing="0" cellpadding="4" style="display: <%if InStr(1,str_PopList,"FL_Pop",1)<>0 then:response.Write(";"):else:Response.Write("none"):end if%>" id="FL_ID">
  1265.                   <tr onMouseOver=overColor(this) onMouseOut=outColor(this)> 
  1266.                     <td width="14%" class="hback"><div align="left"> 
  1267.                         <input name="PopList" type="checkbox" id="PopList" value="FL_site" <%if InStr(1,str_PopList,"FL_site",1)>0 then response.Write "checked"%>>
  1268.                         开启</div></td>
  1269.                     <td width="86%" class="hback"><table width="98%" border="0" cellspacing="0" cellpadding="2">
  1270.                         <tr> 
  1271.                           <td><input name="PopList" type="checkbox" id="PopList" value="FL001" <%if InStr(1,str_PopList,"FL001",1)>0 then response.Write "checked"%>>
  1272.                             查看
  1273.                               <input name="PopList" type="checkbox" id="PopList" value="FL002" <%if InStr(1,str_PopList,"FL002",1)>0 then response.Write "checked"%>>
  1274. 管理</td>
  1275.                         </tr>
  1276.                       </table></td>
  1277.                   </tr>
  1278.                 </table>
  1279.               </div></td>
  1280.           </tr>
  1281.   <%end if%>
  1282.        </table></td>
  1283.     </tr>
  1284.     <tr > 
  1285.       <td class="hback"><div align="left"></div>
  1286.         <input type="submit" name="Submit" value="确定设置权限"> <input type="reset" name="Submit2" value="重置"></td>
  1287.     </tr>
  1288.   </form>
  1289. </table>
  1290. </body>
  1291. </html>
  1292. <script language="JavaScript" type="text/JavaScript">
  1293. function SwitchPopType()
  1294. {
  1295. if (document.PopForm.PopList_MF.checked==true){document.getElementById('MF_ID').style.display='';}
  1296. else{document.getElementById('MF_ID').style.display='none';}
  1297. }
  1298. function CheckAll(form)  
  1299.   {  
  1300.   for (var i=0;i<form.elements.length;i++)  
  1301.     {  
  1302.     var e = PopForm.elements[i];  
  1303.     if (e.name != 'chkall')  
  1304.        {
  1305.    e.checked = PopForm.chkall.checked;  
  1306.    document.getElementById('MF_ID').style.display='';
  1307.    }
  1308. }  
  1309. }
  1310. function ChooseadminType(Type)
  1311. {
  1312. switch (Type)
  1313. {
  1314. case "5":
  1315. document.getElementById('all_id').style.display='';
  1316. break;
  1317. default:
  1318. document.getElementById('all_id').style.display='none';
  1319. break;
  1320. }
  1321. }
  1322. </script>
  1323. <%
  1324. Set Conn = Nothing
  1325. %>