// JavaScript Document
function ShowHistory()
{			
	var history_info = getCookie("history_info");
	var content = "<ul>";	
	if(history_info != null)
	{
		history_arg = history_info.split(",");
		var i;
		for (i=0; i <= 5; i++)
		{
			if(history_arg[i] != null && history_arg[i].indexOf("-") != -1)
			{
				var wlink = history_arg[i].split("-");
				content += ("<li><a href='/Book" + wlink[0] + "/'>" + wlink[1] + "</a></li>");
			}
		}
		document.write(content + "</ul>");
		document.write("<div class=\"more\"><a href=\"#\" onclick=\"ClearHistory();\">清空我的浏览记录</a></div>");
	}
	else
	{
		document.write("<font color=gray>您没有浏览记录...</font>");
	}
	document.close();
}