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('u8_EMFUND'+i);
}
 
 listArticle.sort();
 var jj=new Array();
 //document.writeln (listArticle[0])
//	  document.writeln("<div class='m_b'><div class='s2'></div><div class='fundtext_cookies' style='height:27px;height:22px !important;padding:4px 0 0 10px;color:red;'>您浏览过的基金：")
 document.writeln("<div class='m_b'><div class='s2'></div><div class='fundtext_cookies' style='height:23px;padding:4px 0 0 10px;'>您浏览过的基金：")
 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(listArticle[i]);
		 if (isNaN(str_temp[2])!=true){
         document.writeln("  <a href='http://www.u8see.com/funds/"+str_temp[2]+".html'>"+str_temp[1]+"("+str_temp[2]+")</a> ") ;
       }
	   }
  	}
  	
	}
	
  document.writeln("  <a href='http://www.u8see.com/funds/260104.html'>景顺增长(260104)</a>   <a href='http://www.u8see.com/funds/375010.html'>上投优势(375010)</a>   <a href='http://www.u8see.com/funds/377010.html'>上投α(377010)</a>   <a href='http://www.u8see.com/funds/000011.html'>华夏大盘(000011)</a>   <a href='http://www.u8see.com/funds/519008.html'>添富优势(519008)</a>   <a href='http://www.u8see.com/funds/519001.html'>银华优选(519001)</a>   <a href='http://www.u8see.com/funds/070001.html'>嘉实成长(070001)</a>   <a href='http://www.u8see.com/funds/180001.html'>银华优势(180001)</a> </div></div>")


