function mhHover(cls)
{
	event.srcElement.className = cls;
}
function mhClick(tbObj, cls)
{
	event.srcElement.className = cls;
}
function doZoom(size)
{
	document.getElementById('zoom').style.fontSize=size+'px';
	document.getElementById('zoom').style.lineHeight='150%';
}
	
	function doPrint(){
	var str="<html>";
	var article;
	var css;
	var strdoPrint="doPrint()";
	var strTmp;
	var openWindow
	
		css="<style>"
		+"body{font-family:ËÎÌå;margin:10px;;background:#ffffff}"
		+"td{font-size:14px;line-height:150%;border:1 solid #b8b8b8;padding:10px;}"
		+"</style>";
	
		str +=	css;
		str +=	'<meta http-equiv="content-type" content="text/html; charset=gb2312">';
		str +=	'<title>'+document.title+'</title>';
		str +=	"<body>";
		str +=	"<table width='100%' align=center cellpadding=5 cellspacing=2><tr><td><b>"+document.title+"</b><br>Ô­ÎÄµØÖ·£º"+window.location.href+"</td></tr><tr><td>";
		
		article=document.getElementById('zoom').innerHTML;
		strTmp=article
		str +=strTmp
		str +=	"</td></tr></table>";
		str +=	"</body></html>";
		openWindow = window.open('')
		openWindow.document.write(str);
		openWindow.document.close();
		openWindow.document.execCommand("Print")

	}