function ShowFontSize(obj,strType,intNormalPT)
{

  if (obj.style.fontSize=='')
  {
   if (strType=='bigger') obj.style.fontSize=(intNormalPT+3)+'pt';
   else if (strType=='smaller') obj.style.fontSize=(intNormalPT-3)+'pt';
   else if (strType=='normal') obj.style.fontSize=(intNormalPT)+'pt';
  }
  else
  {
    var i=parseInt(obj.style.fontSize,10);
    if (strType=='bigger') obj.style.fontSize=(i+3)+'pt';
    else if (strType=='smaller' && (i-2)>0) obj.style.fontSize=(i-3)+'pt';
    else if (strType=='normal') obj.style.fontSize=intNormalPT+'pt';
  }
}