<!--//-----------------------添加脚本-------------------------------\-->
function eyunCookie()
{
this.key="";
this.value="";
this.expires=0;
this.path="/";
this.init=function()
{
this.key="";
this.value="";
this.expires=0;
this.path="/";
 }
 this.set=function(key,value,expires,path)//设置cookie
 {
   if(this.key=="")this.key=key;
   if(this.value=="")this.value=value;
   if(this.expires<=0)this.expires=expires;
  if(this.path=="")this.path=path;
 if(this.key==""||typeof(this.key)!="string")
  {
    alert("请先设置欲保存的cookie名称！");
   this.init();
    return false;
  }
 if(this.key.match(/[,; ]/))
  {
    alert("cookie名称中不能包含“,”、“;”或空格！");
   this.init();
    return false;
 }
 if(this.value.toString().match(/[,; ]/)||typeof(this.value)=="undefined")
{
  alert("cookie值中不能包含“,”、“;”或空格！");
  this.init();
   return false;
 }
 /**
 if(this.expires<=0||typeof(this.expires)!="number")
  {
    alert("请先正确设置cookie的有效时间！");
   this.init();
   return false;
 }
 */
var cookie=document.cookie;
if(cookie.indexOf(this.key+"=")!=-1)
{
  //if(!confirm("欲保存的cookie名称已经存在，是否要进行替换？"))
   //{
   //  this.init();
   //  return false;
   //}
 }
 var dt=new Date();
  dt.setTime(dt.getTime()+this.expires);
  //document.cookie=this.key+"="+this.value+";Path="+this.path+";expires="+dt.toGMTString();
  document.cookie=this.key+"="+this.value+";Path="+this.path;
  this.init();
 return true;
 }
this.get=function(key)//取得名为key的cookie的值
{
 if(key==""||key.match(/[,; ]/))
 {
   alert("请正确设置欲查找的cookie名称！")
   return false;
 }
 var cookie=document.cookie;
 var start=cookie.indexOf(key+"=");
 if(start==-1)
 {
   //alert("欲查找的cookie不存在！")
  return "close";
 }
 var end=cookie.indexOf(";",start);
 if(end==-1)
 end=cookie.length;
  var getCookie=cookie.substring(start+key.length+1,end);
 //alert("cookie："+key+"的值为"+getCookie);
  return getCookie;
 }
 this.showAll=function(){
 alert("共有以下cookie对：\n"+document.cookie.split(";").toString().replace(/,/g,"\n"));
 }//显示所有cookie
 this.del=function(key)//删除名为key的cookie
 {
  if(key==""||key.match(/[,; ]/))
  {
    alert("请正确设置欲删除的cookie名称！")
    return false;
  }
   var dt=new Date();
    dt.setTime(dt.getTime());
   document.cookie=key+"=eyunDelete;"+"Path=/;"+"expires="+dt.toGMTString();
    this.init();
    return true;
   }
   this.destroy=function()//销毁所有cookie
   {
     var dt=new Date();
     var i = 0;
     dt.setTime(dt.getTime());
     while(document.cookie!=""){
       if (i == 100) break; i++;
       document.cookie=document.cookie+";Path=/;expires="+dt.toGMTString();
     }
     this.init();
     return true;
    }
  }
var cookieTest=new eyunCookie();
function setCookie(name,value)
{
    if(value=="open")
    cookieTest.set(name,value,3600000,"/"); 
    else
    cookieTest.del(name);
}
function getCookie(name)
{
  return cookieTest.get(name);
}
function swichImage(id,isrc){
  var ing =document.getElementById("img"+id);
  if(ing)
  ing.src = isrc;  
}
function swichImageBefore(id,isrc){
  if(getCookie(id)!="open"){;
      swichImage(id,isrc);
  };
}
function expandIt(oElement,openimg,closeimg)
{
  var trs = document.getElementsByTagName("tr");
  for(i = 0; i < trs.length; i++){
    if(trs[i].id==oElement.id)continue;
    var v1=trs[i].id.split("_"); 
    var v2=oElement.id.split("_");
    if (v1[0].indexOf("leaf")==-1&&v1[0]==v2[0]){
      if (getCookie(trs[i].id)=="open"){
        trs[i].style.display ="none";
        setCookie(trs[i].id,"close");
        swichImage(trs[i].id,closeimg);
        closechilds(trs[i].id,openimg,closeimg);
      }
    }
  }
  if (oElement.style.display == "none"){
    oElement.style.display = "";
    setCookie(oElement.id,"open");
    swichImage(oElement.id,openimg);
  } else {
    oElement.style.display = "none";
    setCookie(oElement.id,"close");
    swichImage(oElement.id,closeimg);
  }
}
function closechilds(parentId,openimg,closeimg){
	var arp = document.getElementsByTagName("tr");
   for(i = 0; i < arp.length; i++){
     if(!arp[i].id)continue;
     if(arp[i].id==parentId)continue;
     var v1=arp[i].id.split("_"); 
     var v2=parentId.split("_");	
     if(v1.length<2||v2.length<2)continue;
     if (v1[0].indexOf("leaf")==-1&&v1[0]=="tr"+v2[1]){
       if (getCookie(arp[i].id)=="open"){
         arp[i].style.display = "none";
         setCookie(arp[i].id,"close");
         swichImage(arp[i].id,closeimg);
         closechilds(arp[i].id,openimg,closeimg);
       }
     }
   } 
}
function closeall(oElement,openimg,closeimg)
{
  var trs = document.getElementsByTagName("tr");
  for(i = 0; i < trs.length; i++){
    if(trs[i].id==oElement)continue;
    var v1=trs[i].id.split("_"); 
    var v2=oElement.split("_");
    //alert(v1);alert(v2)
    if (v1[0].indexOf("leaf")==-1&&v1[0]==v2[0]){
      if (getCookie(trs[i].id)=="open"){
        trs[i].style.display ="none";
        setCookie(trs[i].id,"close");
        swichImage(trs[i].id,closeimg);
        closechilds(trs[i].id,openimg,closeimg);
      }
    }
  }
}
function getTree(){
document.writeln("<TABLE  border=0  id=\"treetab\"><TR><TD>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr106leaf_116\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr106_116\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/zcfgyj/default.htm\" target=\"_self\" onclick=closeall(\"tr106_116\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         政策法规研究</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE border=0>");
document.writeln("<TR>");
document.writeln("  <TD valign=\"top\"  style=\"CURSOR: hand\">");
  if(getCookie("tr106_114")=="open"){ 
     document.write("<IMG id=\"imgtr106_114\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr106_114,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr106_114\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_114\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr106_114\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr106_114,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr106_114\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_114\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr106_114\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_114\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/wzyj/wto/default.jsp\" target=\"_self\" onclick=expandIt(tr106_114,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("行业研究</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr106_114")=="open"){ 
     document.write("<TR id=\"tr106_114\">");
 }else{
    document.write("<TR id=\"tr106_114\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");


document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_141\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_141\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=zh/default.htm\" target=\"_self\" onclick=closeall(\"tr114_141\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         综合</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_145\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_145\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=jr/default.htm\" target=\"_self\" onclick=closeall(\"tr114_145\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         金融</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_144\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_144\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=ny/default.htm\" target=\"_self\" onclick=closeall(\"tr114_144\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         农业</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_143\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_143\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=gy/default.htm\" target=\"_self\" onclick=closeall(\"tr114_143\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         工业</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_146\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_146\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=lsy/default.htm\" target=\"_self\" onclick=closeall(\"tr114_146\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         零售业</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_142\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_142\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=fwmy/default.htm\" target=\"_self\" onclick=closeall(\"tr114_142\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         贸易</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_147\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_147\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=fdc/default.htm\" target=\"_self\" onclick=closeall(\"tr114_147\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         建筑业</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_148\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_148\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=bx/default.htm\" target=\"_self\" onclick=closeall(\"tr114_148\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         保险</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_149\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_149\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=tx/default.htm\" target=\"_self\" onclick=closeall(\"tr114_149\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         电信业</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_150\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_150\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=IT/default.htm\" target=\"_self\" onclick=closeall(\"tr114_150\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         IT</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_152\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_152\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=wl/default.htm\" target=\"_self\" onclick=closeall(\"tr114_152\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         物流</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_151\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_151\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=ly/default.htm\" target=\"_self\" onclick=closeall(\"tr114_151\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         旅游</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_153\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_153\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=zq/default.htm\" target=\"_self\" onclick=closeall(\"tr114_153\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         证券</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_154\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_154\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=yl/default.htm\" target=\"_self\" onclick=closeall(\"tr114_154\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         医疗</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_155\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_155\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=jy/default.htm\" target=\"_self\" onclick=closeall(\"tr114_155\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         教育</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_156\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_156\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=qc/default.htm\" target=\"_self\" onclick=closeall(\"tr114_156\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         汽车</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_157\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_157\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=kj/default.htm\" target=\"_self\" onclick=closeall(\"tr114_157\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         会计</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_158\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_158\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=zx/default.htm\" target=\"_self\" onclick=closeall(\"tr114_158\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         咨询</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_159\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_159\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=hb/default.htm\" target=\"_self\" onclick=closeall(\"tr114_159\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         环保</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr114leaf_159\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr114_159\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/wto/default.jsp?a=cy/default.htm\" target=\"_self\" onclick=closeall(\"tr114_159\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         餐饮</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");



document.writeln("  </TD></TR>");
document.writeln("</TABLE>");


document.writeln("<TABLE border=0>");
document.writeln("<TR>");
document.writeln("  <TD valign=\"top\"  style=\"CURSOR: hand\">");
  if(getCookie("tr106_111")=="open"){ 
     document.write("<IMG id=\"imgtr106_111\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr106_111,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr106_111\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_111\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr106_111\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr106_111,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr106_111\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_111\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr106_111\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_111\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/wzyj/ztyj/default.jsp\" target=\"_self\" onclick=expandIt(tr106_111,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("专题研究</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr106_111")=="open"){ 
     document.write("<TR id=\"tr106_111\">");
 }else{
    document.write("<TR id=\"tr106_111\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr111leaf_136\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr111_136\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/ztyj/default.jsp?m=tzhj/default.htm\" target=\"_self\" onclick=closeall(\"tr111_136\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         投资环境</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr111leaf_138\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr111_138\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/ztyj/default.jsp?o=wzhb/default.htm\" target=\"_self\" onclick=closeall(\"tr111_138\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         资产并购</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr111leaf_1568\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr111_1568\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/ztyj/default.jsp?v=investment%20import/default.htm\" target=\"_self\" onclick=closeall(\"tr111_1568\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         投资促进</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr111leaf_1742\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr111_1742\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/ztyj/default.jsp?w=touzixinggongsi/default.jsp\" target=\"_self\" onclick=closeall(\"tr111_1742\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         投资性公司</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr111leaf_137\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr111_137\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/ztyj/default.jsp?n=zcqyj/default.htm\" target=\"_self\" onclick=closeall(\"tr111_137\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         对外投资</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr111leaf_139\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr111_139\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/ztyj/default.jsp?p=kggszzg/default.htm\" target=\"_self\" onclick=closeall(\"tr111_139\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         跨国公司在中国</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("  </TD></TR>");
document.writeln("</TABLE>");
document.writeln("<TABLE border=0>");
document.writeln("<TR>");
document.writeln("  <TD valign=\"top\"  style=\"CURSOR: hand\">");
  if(getCookie("tr106_109")=="open"){ 
     document.write("<IMG id=\"imgtr106_109\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr106_109,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr106_109\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_109\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr106_109\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr106_109,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr106_109\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_109\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr106_109\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr106_109\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/wzyj/yjbg/default.jsp\" target=\"_self\" onclick=expandIt(tr106_109,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("研究报告</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr106_109")=="open"){ 
     document.write("<TR id=\"tr106_109\">");
 }else{
    document.write("<TR id=\"tr106_109\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr109leaf_133\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr109_133\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/yjbg/default.jsp?mm=1\" target=\"_self\" onclick=closeall(\"tr109_133\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         世界投资报告</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr109leaf_132\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr109_132\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/yjbg/default.jsp?mm=2\" target=\"_self\" onclick=closeall(\"tr109_132\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         贸易和发展报告</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr109leaf_131\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr109_131\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/yjbg/default.jsp?mm=3\" target=\"_self\" onclick=closeall(\"tr109_131\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         中国外商投资报告</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr109leaf_129\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr109_129\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/yjbg/default.jsp?mm=4\" target=\"_self\" onclick=closeall(\"tr109_129\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         开发区发展报告</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr109leaf_135\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr109_135\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/wzyj/yjbg/default.jsp?mm=5\" target=\"_self\" onclick=closeall(\"tr109_135\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         地区优势产业报告</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("  </TD></TR>");
document.writeln("</TABLE>");
document.writeln("</TD></TR>");
document.writeln("</TABLE>");
}
