
var titleName = new Array("Home","About CYPC","CYPC Profile","Chairman s Remarks","CYPC History","Managerial Structure","Major Shareholders","Board of Directors","Contact Us","Organization","Board of Supervisors","Managerial Level","Press Center","Production Management","Special reports","Special News Report","Three Gorges Project","Corporate Culture","Corporate Development","Operation & Performance","Strategy & Planning","Social Obligations","Environmental Protection","Public Undertakings","CYPC Spirit","CYPC Staffs","Hall of Honor"," Video"," Picture Albums","Investor Relations","Regular Reports","Interim Reports","Quotations of the Stock","Stock Performance of Different Periods","Daily K Curve","Weekly K Curve","Monthly K Curve","Human Resources","Human Resources Development","Training & Management","Incentive for Employees","Else","Website","Contact Us","Friendly Link","Special topics on celebration","Celebration reports");
var titleUrl = new Array("index.jsp","TitleList.jsp?cateid=102670","TitleList.jsp?cateid=102685","TitleList.jsp?cateid=123463","TitleList.jsp?cateid=123466","TitleList.jsp?cateid=123468","TitleList.jsp?cateid=123470","TitleList.jsp?cateid=123472","TitleList.jsp?cateid=102696","TitleList.jsp?cateid=102688","TitleList.jsp?cateid=123474","TitleList.jsp?cateid=123476","NewsList.jsp?cateid=102411","NewsList.jsp?cateid=102703","NewsList.jsp?cateid=102415","NewsList.jsp?cateid=102413","http://www.ctgpc.com.cn/en/index.php?cateid=123496","TitleList.jsp?cateid=102674","TitleList.jsp?cateid=102709","TitleList.jsp?cateid=102713","TitleList.jsp?cateid=102711","TitleList.jsp?cateid=102707","TitleList.jsp?cateid=123507","TitleList.jsp?cateid=123509","NewsList.jsp?cateid=123511","NewsList.jsp?cateid=123513","Culture_0302.jsp?cateid=123515","VideoList.jsp?cateid=123518","culture_08_1.jsp?cateid=123522","TitleList.jsp?cateid=102444","IRFileParentList.jsp?cateid=102446","IRFileList1.jsp?cateid=105452","TitleList.jsp?cateid=105454","TitleList.jsp?cateid=105461","TitleList.jsp?cateid=105463","TitleList.jsp?cateid=105465","TitleList.jsp?cateid=105467","TitleList.jsp?cateid=102678","TitleList.jsp?cateid=102776","TitleList.jsp?cateid=123536","TitleList.jsp?cateid=123540","TitleList.jsp?cateid=123542","TitleList.jsp?cateid=123544","TitleList.jsp?cateid=123546","TitleList.jsp?cateid=123548","TitleList.jsp?cateid=102513","NewsList.jsp?cateid=102516");
function clickTitle(name)
{
   var url="index.jsp";
   //alert(name);
   for (var i=0;i<titleName.length;i++)
   {
    if (titleName[i]==name)
    {
     url = titleUrl[i];
    }
   }
   if (url.indexOf("http://")>=0)
   {
    window.open(url,'','width=800,height=600,scrollbars=yes,resizable=yes,toolbars=1,menubar=1');
   }
   else
   {
  window.location=url;
  return false;
   }
}