<!--//-----------------------添加脚本-------------------------------\-->
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("tr216_1150")=="open"){ 
     document.write("<IMG id=\"imgtr216_1150\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_1150,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_1150\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_1150\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr216_1150\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_1150,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_1150\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_1150\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr216_1150\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_1150\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/kfqdt/default.htm\" target=\"_self\" onclick=expandIt(tr216_1150,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("开发区动态</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr216_1150")=="open"){ 
     document.write("<TR id=\"tr216_1150\">");
 }else{
    document.write("<TR id=\"tr216_1150\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr1150leaf_1279\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1150_1279\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/kfqdt/开发区动态_内容/default.htm\" target=\"_self\" onclick=closeall(\"tr1150_1279\",\"/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=\"tr1150leaf_1255\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1150_1255\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/kfqdt/开发区_公告/default.htm\" target=\"_self\" onclick=closeall(\"tr1150_1255\",\"/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("tr216_217")=="open"){ 
     document.write("<IMG id=\"imgtr216_217\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_217,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_217\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_217\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr216_217\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_217,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_217\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_217\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr216_217\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_217\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/default.htm\" target=\"_self\" onclick=expandIt(tr216_217,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("开发区总览</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr216_217")=="open"){ 
     document.write("<TR id=\"tr216_217\">");
 }else{
    document.write("<TR id=\"tr216_217\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr217leaf_1117\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr217_1117\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/kfqjj/default.htm\" target=\"_self\" onclick=closeall(\"tr217_1117\",\"/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=\"tr217leaf_373\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr217_373\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/fzlc/default.htm\" target=\"_self\" onclick=closeall(\"tr217_373\",\"/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("tr217_374")=="open"){ 
     document.write("<IMG id=\"imgtr217_374\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr217_374,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr217_374\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr217_374\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr217_374\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr217_374,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr217_374\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr217_374\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr217_374\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr217_374\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/gljg/default.htm\" target=\"_self\" onclick=expandIt(tr217_374,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("管理机构</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr217_374")=="open"){ 
     document.write("<TR id=\"tr217_374\">");
 }else{
    document.write("<TR id=\"tr217_374\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr374leaf_2371\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr374_2371\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/gljg/swbwzskfqc/default.htm\" target=\"_self\" onclick=closeall(\"tr374_2371\",\"/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=\"tr374leaf_2373\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr374_2373\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/gljg/kfqglwyh/default.htm\" target=\"_self\" onclick=closeall(\"tr374_2373\",\"/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=\"tr217leaf_371\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr217_371\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/dsj/default.htm\" target=\"_self\" onclick=closeall(\"tr217_371\",\"/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=\"tr217leaf_372\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr217_372\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/gjjkfqzl/fzbg/default.htm\" target=\"_self\" onclick=closeall(\"tr217_372\",\"/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\">");
  
     document.write("<IMG id=\"imgtr216_1119\" src=\"/pub/FDI/images/icon4_01.gif\"  height=11 width=11  border=0  ");

document.writeln(">");
   
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr216_1119\",\"/pub/FDI/images/icon4_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_1119\",\"/pub/FDI/images/icon4_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/zhuanti/default.htm\" target=\"_self\" onclick=expandIt(tr216_1119,\"/pub/FDI/images/icon4_01.gif\",\"/pub/FDI/images/icon1_04.gif\")>");
document.writeln("开发区专题</a></TD>");
document.writeln("</TR>");


/*



 if(getCookie("tr216_1119")=="open"){ 
     document.write("<TR id=\"tr216_1119\">");
 }else{
    document.write("<TR id=\"tr216_1119\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");



//add by xjli 2006-8-29

document.writeln("<TABLE border=0>");
document.writeln("<TR>");
document.writeln("  <TD valign=\"top\"  style=\"CURSOR: hand\">");
  if(getCookie("tr1119_1604_1")=="open"){ 
     document.write("<IMG id=\"imgtr1119_1604_1\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr1119_1604_1,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr1119_1604_1\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1604_1\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr1119_1604_1\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr1119_1604_1,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr1119_1604_1\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1604_1\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr1119_1604_1\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1604_1\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/zhuanti/kfqxiaoping20shounian/default.html\" target=\"_self\" onclick=expandIt(tr1119_1604_1,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("纪念小平同志“开发区大有希望”题词二十周年</a></TD>");
document.writeln("</TR>");




 if(getCookie("tr1119_1604_1")=="open"){ 
     document.write("<TR id=\"tr1119_1604_1\">");
 }else{
    document.write("<TR id=\"tr1119_1604_1\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");

document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr1604leaf_1608_1\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1604_1608_1\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/zhuanti/kfqxiaoping20shounian/kfqmeitixinwen/default.htm\" target=\"_self\" onclick=closeall(\"tr1604_1608_1\",\"/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=\"tr1604leaf_1609_1\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1604_1609_1\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/zhuanti/kfqxiaoping20shounian/kfqlingdaojianghua/default.htm\" target=\"_self\" onclick=closeall(\"tr1604_1609_1\",\"/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>");


//add end

document.writeln("<TABLE border=0>");
document.writeln("<TR>");
document.writeln("  <TD valign=\"top\"  style=\"CURSOR: hand\">");
  if(getCookie("tr1119_1604")=="open"){ 
     document.write("<IMG id=\"imgtr1119_1604\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr1119_1604,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr1119_1604\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1604\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr1119_1604\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr1119_1604,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr1119_1604\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1604\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr1119_1604\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1604\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/zhuanti/国家级开发区20周年/default.htm\" target=\"_self\" onclick=expandIt(tr1119_1604,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("国家级经济技术开发区二十周年</a></TD>");
document.writeln("</TR>");




 if(getCookie("tr1119_1604")=="open"){ 
     document.write("<TR id=\"tr1119_1604\">");
 }else{
    document.write("<TR id=\"tr1119_1604\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");

document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr1604leaf_1609\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1604_1609\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/zhuanti/国家级开发区20周年/新闻报道/default.htm\" target=\"_self\" onclick=closeall(\"tr1604_1609\",\"/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=\"tr1604leaf_1608\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1604_1608\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/zhuanti/国家级开发区20周年/论文选编/default.htm\" target=\"_self\" onclick=closeall(\"tr1604_1608\",\"/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=\"tr1604leaf_1607\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1604_1607\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/zhuanti/国家级开发区20周年/图片新闻/default.htm\" target=\"_self\" onclick=closeall(\"tr1604_1607\",\"/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("tr1119_1600")=="open"){ 
     document.write("<IMG id=\"imgtr1119_1600\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr1119_1600,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr1119_1600\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1600\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr1119_1600\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr1119_1600,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr1119_1600\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1600\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr1119_1600\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr1119_1600\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/zhuanti/投资年会/default.htm\" target=\"_self\" onclick=expandIt(tr1119_1600,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("国家级经济技术开发区投资年会</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr1119_1600")=="open"){ 
     document.write("<TR id=\"tr1119_1600\">");
 }else{
    document.write("<TR id=\"tr1119_1600\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr1600leaf_1602\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr1600_1602\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/zhuanti/投资年会/第九届投资年会/default.htm\" target=\"_self\" onclick=closeall(\"tr1600_1602\",\"/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>");


*/
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr216leaf_1120\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr216_1120\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/zsxm/default.jsp\" target=\"_self\" onclick=closeall(\"tr216_1120\",\"/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("tr216_369")=="open"){ 
     document.write("<IMG id=\"imgtr216_369\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_369,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_369\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_369\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr216_369\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_369,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_369\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_369\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr216_369\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_369\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/tzzn/default.htm\" target=\"_self\" onclick=expandIt(tr216_369,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("开发区投资指南</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr216_369")=="open"){ 
     document.write("<TR id=\"tr216_369\">");
 }else{
    document.write("<TR id=\"tr216_369\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr369leaf_377\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr369_377\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/tzzn/tzhj/default.htm\" target=\"_self\" onclick=closeall(\"tr369_377\",\"/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=\"tr369leaf_376\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr369_376\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/tzzn/tzcb/default.htm\" target=\"_self\" onclick=closeall(\"tr369_376\",\"/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=\"tr369leaf_375\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr369_375\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/tzzn/tzzc/default.htm\" target=\"_self\" onclick=closeall(\"tr369_375\",\"/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=\"tr369leaf_378\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr369_378\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/tzzn/tzcx/default.htm\" target=\"_self\" onclick=closeall(\"tr369_378\",\"/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=\"tr369leaf_1118\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr369_1118\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/tzzn/tzfwjg/default.htm\" target=\"_self\" onclick=closeall(\"tr369_1118\",\"/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("tr216_365")=="open"){ 
     document.write("<IMG id=\"imgtr216_365\" src=\"/pub/FDI/images/icon1_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_365,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_365\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_365\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }else{
     document.write("<IMG id=\"imgtr216_365\" src=\"/pub/FDI/images/icon_01.gif\"  height=11 width=11  border=0  onclick=expandIt(tr216_365,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("        onmouseover=swichImage(\"tr216_365\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_365\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln(">");
   }
document.writeln("  </TD><TD valign=\"top\" style=\"CURSOR: hand\" ");
document.writeln("        onmouseover=swichImage(\"tr216_365\",\"/pub/FDI/images/icon1_01.gif\")");
document.writeln("        onmouseout=swichImageBefore(\"tr216_365\",\"/pub/FDI/images/icon_01.gif\")");
document.writeln("><a href=\"/pub/FDI/gjjjjkfq/szkgjjkfq/default.htm\" target=\"_self\" onclick=expandIt(tr216_365,\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")>");
document.writeln("数字看开发区</a></TD>");
document.writeln("</TR>");
 if(getCookie("tr216_365")=="open"){ 
     document.write("<TR id=\"tr216_365\">");
 }else{
    document.write("<TR id=\"tr216_365\" style=\"DISPLAY: none\">");
 }
document.writeln("<TD></TD><TD >");
document.writeln("<TABLE  border=0>")
document.writeln("    <TR id=\"tr365leaf_1289\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr365_1289\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/szkgjjkfq/栏目简述/default.htm\" target=\"_self\" onclick=closeall(\"tr365_1289\",\"/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=\"tr365leaf_1291\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr365_1291\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/szkgjjkfq/主要经济指标统计/default.htm\" target=\"_self\" onclick=closeall(\"tr365_1291\",\"/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=\"tr365leaf_1293\">")
document.writeln("      <TD  valign=\"top\" ><IMG src=\"/pub/FDI/images/icon4_01.gif\"   height=11 width=11  border=0  onclick=closeall(\"tr365_1293\",\"/pub/FDI/images/icon1_01.gif\",\"/pub/FDI/images/icon_01.gif\")></TD>")
document.writeln("      <TD  valign=\"top\"><a href=\"/pub/FDI/gjjjjkfq/szkgjjkfq/投资环境评价/default.htm\" target=\"_self\" onclick=closeall(\"tr365_1293\",\"/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>");
}

