//字体显示：大 中 小
function fontZoom12(){
	document.getElementById('fontzoom').style.fontSize='12px';
	document.getElementById('fontzoom').style.lineHeight='20px';
}
function fontZoom14(){
	document.getElementById('fontzoom').style.fontSize='14px';
	document.getElementById('fontzoom').style.lineHeight='24px';
}
function fontZoom18(){
	document.getElementById('fontzoom').style.fontSize='18px';
	document.getElementById('fontzoom').style.lineHeight='30px';
}

//点击图片放大
function letbig(url){
window.open(url,"放大图片"); 
}