<!--//-----------------------添加脚本-------------------------------\-->
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>");
document.writeln("  <TD valign=\"top\"  style=\"CURSOR: hand\">");
  if(getCookie("tr175_176")=="open"){ 
     document.write("<IMG id=\"imgtr175_176\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr175_176,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr175_176\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_176\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr175_176\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr175_176,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr175_176\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_176\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr175_176\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_176\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/tzfu/fwjg/default.jsp\" target=\"_self\" onclick=expandIt(tr175_176,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("服务机构</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr175_176")=="open"){ 
     document.write("<TR id=\"tr175_176\">");
 }else{
    document.write("<TR id=\"tr175_176\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");

document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr176leaf_183\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr176_183\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/zgtzcjjg/default.htm\" target=\"_self\" onclick=closeall(\"tr176_183\",\"/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=\"tr176leaf_183\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr176_183\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/sbtcjg/default.htm\" target=\"_self\" onclick=closeall(\"tr176_183\",\"/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("tr176_184")=="open"){ 
     document.write("<IMG id=\"imgtr176_184\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr176_184,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr176_184\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr176_184\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr176_184\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr176_184,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr176_184\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr176_184\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr176_184\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr176_184\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/tzfu/fwjg/gjtzcjjg/default.htm\" target=\"_self\" onclick=expandIt(tr176_184,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("国际投资促进机构</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr176_184")=="open"){ 
     document.write("<TR id=\"tr176_184\">");
 }else{
    document.write("<TR id=\"tr176_184\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr184leaf_658\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr184_658\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/gjtzcjjg/yz/default.htm\" target=\"_self\" onclick=closeall(\"tr184_658\",\"/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=\"tr184leaf_657\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr184_657\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/gjtzcjjg/oz/default.htm\" target=\"_self\" onclick=closeall(\"tr184_657\",\"/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=\"tr184leaf_656\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr184_656\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/gjtzcjjg/mz/default.htm\" target=\"_self\" onclick=closeall(\"tr184_656\",\"/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=\"tr184leaf_655\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr184_655\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/gjtzcjjg/dyz/default.htm\" target=\"_self\" onclick=closeall(\"tr184_655\",\"/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=\"tr184leaf_654\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr184_654\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/gjtzcjjg/fz/default.htm\" target=\"_self\" onclick=closeall(\"tr184_654\",\"/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("tr176_186")=="open"){ 
     document.write("<IMG id=\"imgtr176_186\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr176_186,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr176_186\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr176_186\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr176_186\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr176_186,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr176_186\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr176_186\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr176_186\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr176_186\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/tzfu/fwjg/wgzhslg/default.htm\" target=\"_self\" onclick=expandIt(tr176_186,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("外国驻华使领馆</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr176_186")=="open"){ 
     document.write("<TR id=\"tr176_186\">");
 }else{
    document.write("<TR id=\"tr176_186\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr186leaf_392\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr186_392\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/wgzhslg/yz/default.htm\" target=\"_self\" onclick=closeall(\"tr186_392\",\"/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=\"tr186leaf_493\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr186_493\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/wgzhslg/oz/default.htm\" target=\"_self\" onclick=closeall(\"tr186_493\",\"/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=\"tr186leaf_494\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr186_494\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/wgzhslg/mz/default.htm\" target=\"_self\" onclick=closeall(\"tr186_494\",\"/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=\"tr186leaf_495\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr186_495\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/wgzhslg/dyz/default.htm\" target=\"_self\" onclick=closeall(\"tr186_495\",\"/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=\"tr186leaf_496\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr186_496\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/wgzhslg/fz/default.htm\" target=\"_self\" onclick=closeall(\"tr186_496\",\"/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 id=\"tr176leaf_185\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr176_185\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/fwjg/gjzz/default.htm\" target=\"_self\" onclick=closeall(\"tr176_185\",\"/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("tr175_177")=="open"){ 
     document.write("<IMG id=\"imgtr175_177\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr175_177,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr175_177\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_177\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr175_177\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr175_177,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr175_177\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_177\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr175_177\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_177\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/tzfu/hdzn/default.htm\" target=\"_self\" onclick=expandIt(tr175_177,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("活动指南</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr175_177")=="open"){ 
     document.write("<TR id=\"tr175_177\">");
 }else{
    document.write("<TR id=\"tr175_177\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
// add by xjli 2007-4-26
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr177leaf_187_2\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr177_187_2\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/hdzn/hdzn_zbtzmy/default.htm\" target=\"_self\" onclick=closeall(\"tr177_187_2\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         中国中部投资贸易博览会</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
//add by xjli end 2007-4-26
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr177leaf_187\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr177_187\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/hdzn/zggjmyqth/default.htm\" target=\"_self\" onclick=closeall(\"tr177_187\",\"/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=\"tr177leaf_188\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr177_188\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/hdzn/zggxjscgjyh/default.htm\" target=\"_self\" onclick=closeall(\"tr177_188\",\"/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=\"tr177leaf_189\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr177_189\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/hdzn/zgckspjyh/default.htm\" target=\"_self\" onclick=closeall(\"tr177_189\",\"/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=\"tr177leaf_190\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr177_190\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/hdzn/zgbjgjkjcpblh/default.htm\" target=\"_self\" onclick=closeall(\"tr177_190\",\"/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("tr175_178")=="open"){ 
     document.write("<IMG id=\"imgtr175_178\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr175_178,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr175_178\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_178\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr175_178\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr175_178,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr175_178\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_178\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr175_178\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr175_178\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/tzfu/rdwt/default.jsp\" target=\"_self\" onclick=expandIt(tr175_178,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("热点问题</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr175_178")=="open"){ 
     document.write("<TR id=\"tr175_178\">");
 }else{
    document.write("<TR id=\"tr175_178\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr178leaf_408\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_408\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?d=dwtz/default.htm\" target=\"_self\" onclick=closeall(\"tr178_408\",\"/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=\"tr178leaf_409\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_409\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?wb=wzbg/default.htm\" target=\"_self\" onclick=closeall(\"tr178_409\",\"/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=\"tr178leaf_410\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_410\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?b=mygs/default.htm\" target=\"_self\" onclick=closeall(\"tr178_410\",\"/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=\"tr178leaf_411\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_411\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?hk=myhk/default.htm\" target=\"_self\" onclick=closeall(\"tr178_411\",\"/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=\"tr178leaf_412\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_412\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?kj=kjfw/default.htm\" target=\"_self\" onclick=closeall(\"tr178_412\",\"/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=\"tr178leaf_413\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_413\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?a=CEPA/default.htm\" target=\"_self\" onclick=closeall(\"tr178_413\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")> ")
document.writeln("         CEPA</a></TD>")
document.writeln("    </TR>")
document.writeln("</TABLE>");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr178leaf_414\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_414\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?zl=zlfw/default.htm\" target=\"_self\" onclick=closeall(\"tr178_414\",\"/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=\"tr178leaf_415\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_415\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?c=ctqy/default.htm\" target=\"_self\" onclick=closeall(\"tr178_415\",\"/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=\"tr178leaf_416\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_416\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?wj=wzjr/default.htm\" target=\"_self\" onclick=closeall(\"tr178_416\",\"/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=\"tr178leaf_417\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_417\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?wx=wzbx/default.htm\" target=\"_self\" onclick=closeall(\"tr178_417\",\"/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=\"tr178leaf_418\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_418\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?w=wzsy/default.htm\" target=\"_self\" onclick=closeall(\"tr178_418\",\"/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=\"tr178leaf_419\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_419\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?lx=lxs/default.htm\" target=\"_self\" onclick=closeall(\"tr178_419\",\"/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=\"tr178leaf_420\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr178_420\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/rdwt/default.jsp?pmgl=pmgl/default.htm\" target=\"_self\" onclick=closeall(\"tr178_420\",\"/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 id=\"tr175leaf_179\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr175_179\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"http://www.fdi.com.cn/app?page=Index&service=page\" target=\"_self\" onclick=closeall(\"tr175_179\",\"/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=\"tr175leaf_180\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr175_180\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/tzfu/tzjz/default.htm\" target=\"_self\" onclick=closeall(\"tr175_180\",\"/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>");
}

