/*
  For font size button
  
-------------------------------------------------------------------*/


if( FONTSIZE_SELECTOR_ENABLED ){

	var commonDir = u.getCommonDirPath();

	var html = ''
	+'<dl id="fontSize">'
	+'<dd>'
	+'<ul>'
	+'<li><span onClick="fsSelector.setFontSize( \'medium\' )"><img src="'+ commonDir +'images/header_fs002.gif" alt="中" width="83" height="18" class="rollover-fsbutton" id="fsbutton-medium" /></span></li>'
	+'<li><span onClick="fsSelector.setFontSize( \'large\' )"><img src="'+ commonDir +'images/header_fs003.gif" alt="大" width="29" height="18" class="rollover-fsbutton" id="fsbutton-large" /></span></li>'
	+'</ul>'
	+'</dd>'
	+'</dl>';

	document.write( html );
}
else {
	document.write( "&nbsp;" );
}
