function fontSizeChange(newSize) {
	bodyFontSize = newSize;
	setFontSizeCookie();
	window.location.reload();
}
if(document.getElementById){
	var fontSize0 = '<img src="/common/images/size_tit.gif" alt="Change Text Size" height="19" width="95" border="0" vspace="0">';
	var fontSize1 = (bodyFontSize == bodyFontSizeDefault) ? '<img src="/common/images/size_ss_on.gif" alt="" height="19" width="48" border="0" hspace="0">' : '<a href="#" onclick="fontSizeChange(\'' + parseInt(bodyFontSizeDefault) + '\');return false;"><img src="/common/images/size_ss_off.gif" alt="" height="19" width="48" border="0" hspace="0"></a>';
	var fontSize2 = (bodyFontSize == bodyFontSizeDefault+2) ? '<img src="/common/images/size_st_on.gif" alt="" height="19" width="58" border="0" hspace="0">' : '<a href="#" onclick="fontSizeChange(\'' + parseInt(bodyFontSizeDefault+2) + '\');return false;"><img src="/common/images/size_st_off.gif" alt="" height="19" width="58" border="0" hspace="0"></a>';
	var fontSize3 = (bodyFontSize == bodyFontSizeDefault+4) ? '<img src="/common/images/size_la_on.gif" alt="" height="19" width="48" border="0" hspace="0">' : '<a href="#" onclick="fontSizeChange(\'' + parseInt(bodyFontSizeDefault+4) + '\');return false;"><img src="/common/images/size_la_off.gif" alt="" height="19" width="48" border="0" hspace="0"></a>';
	document.write('<span id="head1fontsize-eng">');
	document.write('<img src="/common/images/size_tit.gif" border="0" width="95" height="19" alt="fontsize">');
	document.write(fontSize1);
	document.write(fontSize2);
	document.write(fontSize3);
	document.write('</span>');
}

