// JavaScript Document
function history_show()
{   
try
{
 var history=getCookie("history_info");
 history=unescape(history);
 var content='';
 if(history!="null"&&history.indexOf("&")==-1 && typeof(history)!='undefined')
 {
 history_arg=history.split("_hjsm.tom.com_");
 i=0;
 linknum=0;
 len= history_arg.length;
 var diftime;
 var difh;
 var difi;
 var jj=1;
 for(i=0;i<len;i++)
 { 
 	var wlink=history_arg[i].split("+");
	var new_time = new Date().getTime();
	
    if(history_arg[i]!="null" && content.indexOf(wlink[0])==-1 && linknum<44  && typeof(history_arg[i])!='undefined'){
		diftime = Number(new_time)-Number(wlink[3]);
		difh = parseInt(Number(diftime)/3600000);
		if(difh==0){
			difh='';
		}else{
			difh = difh + "小时";	
		}
		//difi = parseInt((Number(diftime)%3600000)*60)+"分钟前";
		if(diftime>3600000){
			//difi = parseInt((parseInt(diftime) % 3600000)*60)+"分钟前";
			difi = parseInt((parseInt(diftime) % 3600000)/60000)+"分钟前";
		}else{
			difi = 	parseInt(parseInt(diftime) / 60000)+"分钟前";
		}
       //content+="<li>["+wlink[2]+"]<a href=\""+wlink[1]+"\" target=\"_blank\"  title=\""+wlink[0]+"\">"+wlink[0]+"</a>&nbsp;&nbsp;<a //href=\"javascript:window.external.AddFavorite('"+wlink[1]+"','"+wlink[1]+"')\">加入收藏</a>&nbsp;&nbsp;&nbsp;&nbsp;"+difh+difi+"</li>";
	   var show_title = unescape(wlink[0]).replace(/undefined/g,'');
	   var title = unescape(wlink[0]);
	   title = title.replace(/undefined/g,'');
	   	if (title.length > 9) {
			title = title.substr(0, 8)+"..";
		}
		var classname = unescape(wlink[2]);
		
		if(classname.length > 2)
		{
			classname = classname.substr(0,2);
		}
	    content+="<li></span><span class=\"tag\"><a href=\""+wlink[4]+"\"  target='_blank'>["+classname+"]</a></span><a href=\""+wlink[1]+"\"  target='_blank' title='"+show_title+"'>"+title+"</a><span class=\"time\">"+difh+difi+"</span><a onClick=\"window.open('http://hjsm.tom.com/new_hj/user/personal/bookshelf.php?act=addBookToShelf&book_id="+wlink[5]+"','','width=530,height=260,toolbar=no,resizable=yes,scrollbars=no');return false;\" style=\"cursor:pointer\" title=\"加入收藏\"><img src=\"http:\/\/pic.hjsm.tom.com\/hj_site\/juanye\/images\/icon08.gif\" alt=\"加入收藏\" /></a></li>";
       linknum+=1;
	   jj+=1;
    }    
}    
 document.getElementById("history").innerHTML=content; 

}else{
 	document.getElementById("history").innerHTML="</ul><div style='margin-top:35px;text-align=center'>您目前还没有浏览记录。</div><ul>";

}
}
catch(e){}
}


function chapter_history_show()
{   
try
{
 var history=getCookie("history_info");
 history=unescape(history);
 var content='';
 if(history!="null"&&history.indexOf("&")==-1 && typeof(history)!='undefined')
 {
 history_arg=history.split("_hjsm.tom.com_");
 i=0;
 linknum=0;
 len= history_arg.length;
 var diftime;
 var difh;
 var difi;
 var jj=1;
 for(i=0;i<len;i++)
 { 
 	var wlink=history_arg[i].split("+");
	var new_time = new Date().getTime();
	
    if(history_arg[i]!="null" && content.indexOf(wlink[0])==-1 && linknum<44  && typeof(history_arg[i])!='undefined'){
		diftime = Number(new_time)-Number(wlink[3]);
		difh = parseInt(Number(diftime)/3600000);
		if(difh==0){
			difh='';
		}else{
			difh = difh + "小时";	
		}
		//difi = parseInt((Number(diftime)%3600000)*60)+"分钟前";
		if(diftime>3600000){
			//difi = parseInt((parseInt(diftime) % 3600000)*60)+"分钟前";
			difi = parseInt((parseInt(diftime) % 3600000)/60000)+"分钟前";
		}else{
			difi = 	parseInt(parseInt(diftime) / 60000)+"分钟前";
		}
		
        var title = unescape(wlink[0]);
		title = title.replace(/undefined/g,'');
	   	if (title.length > 9) {
			title = title.substr(0, 8)+"..";
		}		
		content+="<li>·<a href=\""+wlink[1]+"\"  target='_blank'>"+title+"</a></li>";
		
       linknum+=1;
	   jj+=1;
    }    
}    
 document.getElementById("history").innerHTML=content; 

}else{
 	document.getElementById("history").innerHTML="</ul><div style='margin-top:35px;text-align=center'></div><ul>";

}
}
catch(e){}
}