function GetFontSize()
{try
{var font_size=$("contentResize").style.fontSize;return font_size;}
catch(e)
{}}
function SetFontSize()
{try
{var font_size=GetFontSize();if(font_size=='11px')
{$("contentResize").style.fontSize="14px";}
else if(font_size=='14px')
{$("contentResize").style.fontSize="16px";}
else
{$("contentResize").style.fontSize="11px";}}
catch(e)
{}}