function GetCookie(name) {
    var dc = document.cookie;
    var prefix = name + "=";
    var begin = dc.indexOf("; " + prefix);
    if (begin == -1)
    {
        begin = dc.indexOf(prefix);
        if (begin != 0) return null;
    }
    else
    {
        begin += 2;
    }
    var end = document.cookie.indexOf(";", begin);
    if (end == -1)
    {
        end = dc.length;
    }
    return unescape(dc.substring(begin + prefix.length, end));
} 
  

 listArticle=new Array();
 for(i=0;i<10;i++){
 listArticle[i]=GetCookie('EMFUND'+i);
}
 
 listArticle.sort();
 var jj=new Array();
	  document.writeln("<div class='m_b'><div class='s2'></div><div class='fundtext_cookies' style='height:23px;padding:4px 0 0 10px;color:black;'>您浏览过的基金：")
 if(listArticle[0]!=null){

	  for(i=listArticle.length-1;i>=0;i--){
       if(listArticle[i]!="null"){
         str_temp=listArticle[i].split("@#$");
         jj[i]=str_temp[1];
         document.writeln("  <a href='http://fund.eastmoney.com/"+str_temp[2]+".html'>"+str_temp[1]+"("+str_temp[2]+")</a> ") ;
       }
  	}
  	
	}
	
  document.writeln("  <a href='http://fund.eastmoney.com/260104.html'>景顺增长(260104)</a>   <a href='http://fund.eastmoney.com/375010.html'>上投优势(375010)</a>   <a href='http://fund.eastmoney.com/377010.html'>上投α(377010)</a>   <a href='http://fund.eastmoney.com/000011.html'>华夏大盘(000011)</a>   <a href='http://fund.eastmoney.com/519008.html'>添富优势(519008)</a>   <a href='http://fund.eastmoney.com/519001.html'>银华优选(519001)</a>   <a href='http://fund.eastmoney.com/070001.html'>嘉实成长(070001)</a>   <a href='http://fund.eastmoney.com/180001.html'>银华优势(180001)</a> </div></div>")