function set_Fontsize(CtrlType){
if(CtrlType=='plus'){ 
fontinfo.style.fontSize=eval(parseInt(fontinfo.style.fontSize)+2)+"px" 

} 
else{ 
	if(parseInt(fontinfo.style.fontSize)>=8)
	{
     fontinfo.style.fontSize=eval(parseInt(fontinfo.style.fontSize)-2)+"px" 
    }else
     fontinfo.style.fontSize="6px" 

} 
} 

function set_Fontlineheight(CtrlType){
if(CtrlType=='plus'){ 
fontinfo.style.lineHeight=eval(parseInt(fontinfo.style.lineHeight)+4)+"px" 

} 
else{ 

 if(parseInt(fontinfo.style.lineHeight)>14)
  {
     fontinfo.style.lineHeight=eval(parseInt(fontinfo.style.lineHeight)-4)+"px" 
	 }
 else
     fontinfo.style.lineHeight="14px" 

} 
} 


