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'|| !font_size ){
	$("contentResize").style.fontSize="14px";
	$("contentResizeIntro").style.fontSize="14px";	
}else if(font_size=='14px'){
	$("contentResize").style.fontSize="16px";
	$("contentResizeIntro").style.fontSize="16px";
}else if(font_size=='16px'){
	$("contentResize").style.fontSize="11px";
	$("contentResizeIntro").style.fontSize="14px";
}
}
catch(e)
{}}
