<!--
function Zoom(size){
	if(size != "" && !isNaN(size) && (document.getElementById('content') != null)) {
		SetCookie('fontSize', size)
		document.getElementById('content').style.fontSize=size+'px'
	}
}
document.writeln('<div class="zoomlink">字号<img src="http://www.napolun.com/resource/zoom.gif" width="13" height="12" hspace="5" align="absmiddle" /><a href="javascript:Zoom(18)">大</a>&nbsp;<a href="javascript:Zoom(16)">中</a>&nbsp;<a href="javascript:Zoom(14)">小</a></div>');
//-->