document.writeln("<script>");
document.writeln("\/\/Chrome Drop Down Menu- Author: Dynamic Drive (http:\/\/www.dynamicdrive.com)");
document.writeln("\/\/Last updated: June 14th, 06\'");
document.writeln("");
document.writeln("var cssdropdown={");
document.writeln("disappeardelay: 250, \/\/set delay in miliseconds before menu disappears onmouseout");
document.writeln("disablemenuclick: true, \/\/when user clicks on a menu item with a drop down menu, disable menu item\'s link?");
document.writeln("enableswipe: 1, \/\/enable swipe effect? 1 for yes, 0 for no");
document.writeln("");
document.writeln("\/\/No need to edit beyond here\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/");
document.writeln("dropmenuobj: null, ie: document.all, firefox: document.getElementById&&!document.all, swipetimer: undefined, bottomclip:0,");
document.writeln("");
document.writeln("getposOffset:function(what, offsettype){");
document.writeln("var totaloffset=(offsettype==\"left\")? what.offsetLeft : what.offsetTop;");
document.writeln("var parentEl=what.offsetParent;");
document.writeln("while (parentEl!=null){");
document.writeln("totaloffset=(offsettype==\"left\")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;");
document.writeln("parentEl=parentEl.offsetParent;");
document.writeln("}");
document.writeln("return totaloffset;");
document.writeln("},");
document.writeln("");
document.writeln("swipeeffect:function(){");
document.writeln("if (this.bottomclip<parseInt(this.dropmenuobj.offsetHeight)){");
document.writeln("this.bottomclip+=10+(this.bottomclip\/10) \/\/unclip drop down menu visibility gradually");
document.writeln("this.dropmenuobj.style.clip=\"rect(0 auto \"+this.bottomclip+\"px 0)\"");
document.writeln("}");
document.writeln("else");
document.writeln("return");
document.writeln("this.swipetimer=setTimeout(\"cssdropdown.swipeeffect()\", 10)");
document.writeln("},");
document.writeln("");
document.writeln("showhide:function(obj, e){");
document.writeln("if (this.ie || this.firefox)");
document.writeln("this.dropmenuobj.style.left=this.dropmenuobj.style.top=\"-500px\"");
document.writeln("if (e.type==\"click\" && obj.visibility==hidden || e.type==\"mouseover\"){");
document.writeln("if (this.enableswipe==1){");
document.writeln("if (typeof this.swipetimer!=\"undefined\")");
document.writeln("clearTimeout(this.swipetimer)");
document.writeln("obj.clip=\"rect(0 auto 0 0)\" \/\/hide menu via clipping");
document.writeln("this.bottomclip=0");
document.writeln("this.swipeeffect()");
document.writeln("}");
document.writeln("obj.visibility=\"visible\"");
document.writeln("}");
document.writeln("else if (e.type==\"click\")");
document.writeln("obj.visibility=\"hidden\"");
document.writeln("},");
document.writeln("");
document.writeln("iecompattest:function(){");
document.writeln("return (document.compatMode && document.compatMode!=\"BackCompat\")? document.documentElement : document.body");
document.writeln("},");
document.writeln("");
document.writeln("clearbrowseredge:function(obj, whichedge){");
document.writeln("var edgeoffset=0");
document.writeln("if (whichedge==\"rightedge\"){");
document.writeln("var windowedge=this.ie && !window.opera? this.iecompattest().scrollLeft+this.iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15");
document.writeln("this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetWidth");
document.writeln("if (windowedge-this.dropmenuobj.x < this.dropmenuobj.contentmeasure)  \/\/move menu to the left?");
document.writeln("edgeoffset=this.dropmenuobj.contentmeasure-obj.offsetWidth");
document.writeln("}");
document.writeln("else{");
document.writeln("var topedge=this.ie && !window.opera? this.iecompattest().scrollTop : window.pageYOffset");
document.writeln("var windowedge=this.ie && !window.opera? this.iecompattest().scrollTop+this.iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18");
document.writeln("this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetHeight");
document.writeln("if (windowedge-this.dropmenuobj.y < this.dropmenuobj.contentmeasure){ \/\/move up?");
document.writeln("edgeoffset=this.dropmenuobj.contentmeasure+obj.offsetHeight");
document.writeln("if ((this.dropmenuobj.y-topedge)<this.dropmenuobj.contentmeasure) \/\/up no good either?");
document.writeln("edgeoffset=this.dropmenuobj.y+obj.offsetHeight-topedge");
document.writeln("}");
document.writeln("}");
document.writeln("return edgeoffset");
document.writeln("},");
document.writeln("");
document.writeln("dropit:function(obj, e, dropmenuID){");
document.writeln("if (this.dropmenuobj!=null) \/\/hide previous menu");
document.writeln("this.dropmenuobj.style.visibility=\"hidden\" \/\/hide menu");
document.writeln("this.clearhidemenu()");
document.writeln("if (this.ie||this.firefox){");
document.writeln("obj.onmouseout=function(){cssdropdown.delayhidemenu()}");
document.writeln("obj.onclick=function(){return !cssdropdown.disablemenuclick} \/\/disable main menu item link onclick?");
document.writeln("this.dropmenuobj=document.getElementById(dropmenuID)");
document.writeln("this.dropmenuobj.onmouseover=function(){cssdropdown.clearhidemenu()}");
document.writeln("this.dropmenuobj.onmouseout=function(){cssdropdown.dynamichide(e)}");
document.writeln("this.dropmenuobj.onclick=function(){cssdropdown.delayhidemenu()}");
document.writeln("this.showhide(this.dropmenuobj.style, e)");
document.writeln("this.dropmenuobj.x=this.getposOffset(obj, \"left\")");
document.writeln("this.dropmenuobj.y=this.getposOffset(obj, \"top\")");
document.writeln("this.dropmenuobj.style.left=this.dropmenuobj.x-this.clearbrowseredge(obj, \"rightedge\")+\"px\"");
document.writeln("this.dropmenuobj.style.top=this.dropmenuobj.y-this.clearbrowseredge(obj, \"bottomedge\")+obj.offsetHeight+1+\"px\"");
document.writeln("}");
document.writeln("},");
document.writeln("");
document.writeln("contains_firefox:function(a, b) {");
document.writeln("while (b.parentNode)");
document.writeln("if ((b = b.parentNode) == a)");
document.writeln("return true;");
document.writeln("return false;");
document.writeln("},");
document.writeln("");
document.writeln("dynamichide:function(e){");
document.writeln("var evtobj=window.event? window.event : e");
document.writeln("if (this.ie&&!this.dropmenuobj.contains(evtobj.toElement))");
document.writeln("this.delayhidemenu()");
document.writeln("else if (this.firefox&&e.currentTarget!= evtobj.relatedTarget&& !this.contains_firefox(evtobj.currentTarget, evtobj.relatedTarget))");
document.writeln("this.delayhidemenu()");
document.writeln("},");
document.writeln("");
document.writeln("delayhidemenu:function(){");
document.writeln("this.delayhide=setTimeout(\"cssdropdown.dropmenuobj.style.visibility=\'hidden\'\",this.disappeardelay) \/\/hide menu");
document.writeln("},");
document.writeln("");
document.writeln("clearhidemenu:function(){");
document.writeln("if (this.delayhide!=\"undefined\")");
document.writeln("clearTimeout(this.delayhide)");
document.writeln("},");
document.writeln("");
document.writeln("startchrome:function(){");
document.writeln("for (var ids=0; ids<arguments.length; ids++){");
document.writeln("var menuitems=document.getElementById(arguments[ids]).getElementsByTagName(\"a\")");
document.writeln("for (var i=0; i<menuitems.length; i++){");
document.writeln("if (menuitems[i].getAttribute(\"rel\")){");
document.writeln("var relvalue=menuitems[i].getAttribute(\"rel\")");
document.writeln("menuitems[i].onmouseover=function(e){");
document.writeln("var event=typeof e!=\"undefined\"? e : window.event");
document.writeln("cssdropdown.dropit(this,event,this.getAttribute(\"rel\"))");
document.writeln("}");
document.writeln("}");
document.writeln("}");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("}")

document.writeln("</script>");
 
 
 
document.writeln("<style>");
document.writeln(" .hot a:link{color:#F60}");
document.writeln(" .hot a:visited{color:#F60}");
document.writeln(" .hot a:hover{color:#F60}");
document.writeln(" ");
document.writeln(" .munutab td{");
document.writeln(" padding-top:2px;");
document.writeln(" height:20px;");
document.writeln("  ");
document.writeln(" }");
document.writeln("<\/style>");
document.writeln("");
document.writeln("<table width=\"960\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td><div id=\"logo2\">");
document.writeln("  <iframe frameborder=no marginheight=0 marginwidth=0 name= top scrolling=no src=\"http:\/\/www.cbismb.com\/ad\/index\/index_1.shtml\" width=\"960\" height=\"90\"><\/iframe>");
document.writeln("<\/div><\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td><div id=\"top\">");
document.writeln("  <div id=\"left_img\"><\/div>");
document.writeln("   <div id=\"bj_mid\">");
document.writeln("  <div id=\"logo\">");
document.writeln("");
document.writeln("  <img src=\"http:\/\/www.cbismb.com\/images\/gif\/cbismblogo.gif\" \/><\/div>");
document.writeln("  <table width=\"70%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"\" class=\"toptable\">");
document.writeln("  <tr>");
document.writeln("    <td valign=\"top\" height=\"21px\"  >");
document.writeln("     <form method=\"post\"  name=\"loginform\" style=\"margin:0px; padding:0px; \" action=\"http:\/\/www.cbismb.com\/sys\/do_login.jsp\" target=\"_blank\"  onsubmit=\"return checkDateLogin();\">");
document.writeln(" <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td width=\"29%\"><input type=\"text\" name=\"username\" id=\"username\"  maxlength=\"20\" value=\"用户名\"  onfocus=\"javascript: if(this.value==\'用户名\') this.value=\'\';\"  onblur=\"javascript:if(this.value==\'\') this.value=\'用户名\';\" \/><\/td>");
document.writeln("    <td width=\"29%\" style=\"padding-left:5px;\"><input type=\"password\" name=\"password\" id=\"password\" value=\"密码\" maxlength=\"20\" onfocus=\"javascript: if(this.value==\'密码\') this.value=\'\';\"  onblur=\"javascript:if(this.value==\'\') this.value=\'密码\';\" \/><\/td>");
document.writeln("    <td width=\"15%\" style=\"padding-left:5px;\"><input type=\"image\" src=\"http:\/\/www.cbismb.com\/images\/gif\/cbismb_index_08.gif\" style=\"width:44px; height:21px;\" \/><\/td>");
document.writeln("    <td width=\"27%\" style=\"padding-left:5px;\"><a href=\"http:\/\/bbs.cbismb.com\/register.php\" target=\"_blank\"><img src=\"http:\/\/www.cbismb.com\/images\/cbismb_index_10.png\" alt=\"注册\" width=\"44\" height=\"21\" border=\"0\" class=\"px3\"  style=\"border:none;\" \/><\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>");
document.writeln("<\/form>    <\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("    <td>");
document.writeln("     <form action=\"http:\/\/www.cbismb.com\/inc\/search.jsp\" method=\"post\"   target=\"_blank\" name=\"theform\" onsubmit = \"return checkDate2()\" style=\"margin:0px; padding:0px;\">");
document.writeln("      <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td ><input type=\"text\" name=\"search\"  size=\"25\" value=\"请输入检索信息\" onFocus=\"this.value=\'\';\" maxlength=\"20\" \/><\/td>");
document.writeln("    <td style=\"padding-left:5px\"><select name=\"searchType\"><option value=\"keyWord\">关键字<\/option><option value=\"articleTitle\">文章标题<\/option><option value=\"author\">文章作者<\/option><option value=\"articleBody\">全文检索<\/option><\/select><\/td>");
document.writeln("    <td style=\"padding-left:5px\"><input type=\"image\" src=\"http:\/\/www.cbismb.com\/images\/gif\/cbismb_index_12.gif\" value=\"     \" style=\"background-image: url(http:\/\/www.cbismb.com\/images\/gif\/cbismb_index_12.gif) ; background-repeat:no-repeat; width:63px; height:21px; border:none;  margin-left:5px; \"><\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>");
document.writeln("    <\/form>    <\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>");
document.writeln("  <\/div>");
document.writeln("  <div id=\"r_img\"><\/div>");
document.writeln("<\/div><\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td><div id=\"menu\">");
document.writeln("   <div id=\"menu_top\">");
document.writeln("     <div id=\"m_t_l_i\"><\/div>");
document.writeln("     <div id=\"m_t_m\">");
document.writeln("       <div id=\"m_t_mi\">");
document.writeln("         <ul>");
document.writeln("           <li><a href=\"http:\/\/www.cbismb.com\/\">首页<\/a><\/li>");
document.writeln("           <li><a href=\"#\" rel=\"dropmenu1\">IT基础群<\/a><\/li>");
document.writeln("           <li><a href=\"#\" rel=\"dropmenu2\">业务应用群<\/a><\/li>");
document.writeln("           <li><a href=\"http:\/\/www.cbismb.com\/360\" target=\"_blank\">360行<\/a><\/li>");
document.writeln("           <li><a href=\"#\" rel=\"dropmenu3\">电子报<\/a><\/li>");
document.writeln("           <li><a href=\"http:\/\/shop.cbismb.com\" target=\"_blank\">团购商城<\/a><\/li>");
document.writeln("         <\/ul>");
document.writeln("       <\/div>");
document.writeln("     <\/div>");
document.writeln("     <div id=\"menu_right\">");
document.writeln("       <div id=\"m_t_m02\">");
document.writeln("         <div id=\"m_t_r_mi\">");
document.writeln("           <ul>");
document.writeln("             <li><a href=\"http:\/\/blog.cbismb.com\" target=\"_blank\">博客<\/a><\/li>");
document.writeln("             <li><a href=\"http:\/\/bbs.cbismb.com\" target=\"_blank\">社区<\/a><\/li>");
document.writeln("             <li><a href=\"http:\/\/www.cbismb.com\/iask\" target=\"_blank\">问吧<\/a><\/li>");
document.writeln("           <\/ul>");
document.writeln("         <\/div>");
document.writeln("       <\/div>");
document.writeln("       <div id=\"m_t_r_i\"><\/div>");
document.writeln("     <\/div>");
document.writeln("     <!--1st drop down menu -->");
document.writeln("     <div id=\"dropmenu1\" class=\"dropmenudiv\" style=\"height:55px;\"> ");
document.writeln("      ");
document.writeln("       ");
document.writeln("        ");
document.writeln("<table width=\"350\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td height=\"20px\"> <a href=\"http:\/\/www.cbismb.com\/server\/\"  target=\"_blank\">服务器<\/a>    <\/td>");
document.writeln("    <td><a href=\" http:\/\/www.cbismb.com\/network\/\"  target=\"_blank\">网络<\/a><\/td>");
document.writeln("    <td> <a href=\"http:\/\/www.cbismb.com\/notebook\/\"  target=\"_blank\">笔记本<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/printer\/\" target=\"_blank\">打印机<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/casestudy\/\" target=\"_blank\">案例<\/a><\/td>");
document.writeln("    <td> <a href=\"http:\/\/www.cbismb.com\/asoftware\/\" target=\"_blank\">应用软件<\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr  class=\"munutab\">");
document.writeln("    <td  height=\"20px\" ><a href=\"http:\/\/www.cbismb.com\/desktop\/\"  target=\"_blank\">台式机<\/a>     <\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/wireless\/\" target=\"_blank\">无线<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/projector\/\" target=\"_blank\">投影机<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/shop.cbismb.com\" target=\"_blank\">产品库<\/a> <\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/solution\/\" target=\"_blank\">方案<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/msoftware\/\" target=\"_blank\">管理软件<\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>");
document.writeln("");
document.writeln("     <\/div>");
document.writeln("     <div id=\"dropmenu2\" class=\"dropmenudiv\" style=\"height:80px;\"> ");
document.writeln(" ");
document.writeln("     <table width=\"500\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td height=\"20px\"><a href=\"http:\/\/www.cbismb.com\/digital\/\" target=\"_blank\">数码<\/a> <\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/it\/\" target=\"_blank\">IT商务<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/inc\/search_keyword.jsp?keyword=CBI%B0%D7%BA%D0\" target=\"_blank\">CBI白盒<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/news\/\" target=\"_blank\">新闻中心<\/a><\/td>");
document.writeln("    <td> <a href=\"http:\/\/www.cbismb.com\/tools\/\" target=\"_blank\">IT工具库<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/industry\/\" target=\"_blank\">行业应用<\/a><\/td>");
document.writeln("    <td> <a href=\"http:\/\/www.cbismb.com\/inc\/search.jsp?search=信息化&amp;searchType=keyWord\" target=\"_blank\">行业信息化<\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln(" <tr  class=\"munutab\">");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/inc\/active.jsp\" target=\"_blank\">活动<\/a>  <\/td>");
document.writeln("    <td> <a href=\"http:\/\/www.cbismb.com\/study\/\" target=\"_blank\">IT学院<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/internet\/\" target=\"_blank\">互联网<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/guide\/\" target=\"_blank\">产品采购<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/eb\/\" target=\"_blank\">电子商务<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/inc\/vendorlist.jsp\" target=\"_blank\">厂家名录<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/inc\/search.jsp?search=PPT&searchType=keyWord\" target=\"_blank\">商务PPT下载<\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr  class=\"munutab\">");
document.writeln("    <td> <a href=\"http:\/\/www.cbismb.com\/salary\/\" target=\"_blank\">IT职场<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/whitepaper\/\" target=\"_blank\">白皮书<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/cio\/addnews.jsp\" target=\"_blank\">新闻投递<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/photo\/\" target=\"_blank\">图片联播<\/a><\/td>");
document.writeln("    <td> <a href=\"#a\" target=\"_blank\">投资融资<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/cio\/\" target=\"_blank\">CIO俱乐部<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/academe\/\" target=\"_blank\">企业研究院<\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>");
document.writeln("");
document.writeln("     ");
document.writeln("     <\/div>");
document.writeln("    ");
document.writeln("     <div id=\"dropmenu3\" class=\"dropmenudiv\" style=\"height:30px;\">");
document.writeln("     ");
document.writeln("       ");
document.writeln("      ");
document.writeln("      <table width=\"200\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td height=\"20px\"><a href=\"http:\/\/www.cbismb.com\/smb_epaper\/\" target=\"_blank\">中小企业IT采购<\/a><\/td>");
document.writeln("    <td><a href=\"http:\/\/www.cbismb.com\/ITCEO\/old.htm\">IT经理快报<\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>");
document.writeln("<\/div>");
document.writeln("     <script type=\"text\/javascript\">");
document.writeln("cssdropdown.startchrome(\"m_t_mi\")");
document.writeln(" <\/script>");
document.writeln("   <\/div>");
document.writeln("   <div id=\"menu_f\">");
document.writeln("     <div id=\"menu_f_l\"><\/div>");
document.writeln("     <div id=\"menu_f_m\">");
document.writeln("       <ul class=\"menu_f_m\">");
document.writeln("         <li class=\"hot\"><a href=\"http:\/\/www.cbismb.com\/news\/\" target=\"_blank\">新闻中心<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/it\/\" target=\"_blank\">IT商务<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/industry\/\" target=\"_blank\">行业应用<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/inc\/search_keyword.jsp?keyword=CBI%B0%D7%BA%D0\" target=\"_blank\">CBI白盒<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/guide\/\" target=\"_blank\">产品采购<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/study\/\" target=\"_blank\">IT学院<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/salary\/\" target=\"_blank\">IT　职场<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/digital\/\" target=\"_blank\">数　　码<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/internet\/\" target=\"_blank\">互联网<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/eb\/\" target=\"_blank\">电子商务<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/inc\/vendorlist.jsp\" target=\"_blank\">厂家名录<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/whitepaper\/\" target=\"_blank\">白皮书<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/cio\/\" target=\"_blank\">CIO俱乐部<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/ITCEO\/old.htm\" target=\"_blank\">IT经理快报<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/academe\/\" target=\"_blank\">企业研究院<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/inc\/active.jsp\" target=\"_blank\">活　动<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/cio\/addnews.jsp\" target=\"_blank\">新闻投递<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/photo\/\" target=\"_blank\">图片联播<\/a><\/li>");
document.writeln("         <li><a href=\"http:\/\/www.cbismb.com\/inc\/search.jsp?search=PPT&amp;searchType=keyWord\/\" target=\"_blank\">PPT下载<\/a><\/li>");
document.writeln("         <li class=\"hot\"><a href=\"#a\" target=\"_blank\">投资融资<\/a><\/li>");
document.writeln("       <\/ul>");
document.writeln("     <\/div>");
document.writeln("     <div id=\"menu_f_r\"><\/div>");
document.writeln("   <\/div>");
document.writeln(" <\/div><\/td>");
document.writeln("  <\/tr>");
document.writeln("  ");
document.writeln("<\/table>")