﻿//***************************************
//文件名：NewsDetail.js
//创建人：陈丰军
//创建日期：2007-3-28
//功能描述：新闻详细显示页面的JS
//*****************************************
// JScript 文件

//网页字体大小的变化
var status0='';

var curfontsize=10;

var curlineheight=18;

function fontZoomA(){

if(curfontsize>8){

document.getElementById('fontzoom').style.fontSize=(--curfontsize)+'pt';

document.getElementById('fontzoom').style.lineHeight=(--curlineheight)+'pt';

}

}

function fontZoomB(){

if(curfontsize<64){

document.getElementById('fontzoom').style.fontSize=(++curfontsize)+'pt';

document.getElementById('fontzoom').style.lineHeight=(++curlineheight)+'pt';

}

}


