/*
  2009-12-29
  
-------------------------------------------------------------------*/


if( FONTSIZE_SELECTOR_ENABLED ){

	var commonDir = u.getCommonDirPath();

	var html = ''
	+'<dl id="fontsize-switch">'
	+'<dt><img src="'+ commonDir +'images/header_tx01.gif" alt="文字サイズの変更" width="106" height="21"></dt>'
	+'<dd id="medium-button">'
	+'<a onclick="fsSelector.setFontSize( \'medium\' )">'
	+'<img src="'+ commonDir +'images/header_bt02.gif" alt="文字サイズ変更：標準" width="35" height="21" class="rollover-fsbutton" id="fsbutton-medium" />'
	+'</a>'
	+'</dd>'
	+'<dd id="large-button">'
	+'<a onclick="fsSelector.setFontSize( \'large\' )">'
	+'<img src="'+ commonDir +'images/header_bt03.gif" alt="文字サイズ変更：大" width="26" height="21" class="rollover-fsbutton" id="fsbutton-large" />'
	+'</a>'
	+'</dd>'
	+'</dl>';

	document.write( html );
}
else {
	document.write( "&nbsp;" );
}


/* html template
<dl id="fontsize-switch">
<dt><img src="common/images/header_tx01.gif" alt="文字サイズの変更" width="106" height="21"></dt>
<dd><img src="common/images/header_bt02.gif" alt="文字サイズ変更：標準" width="35" height="21" class="rollover-fsbutton" id="fsbutton-medium"></dd>
<dd><img src="common/images/header_bt03.gif" alt="文字サイズ変更：大" width="26" height="21" class="rollover-fsbutton" id="fsbutton-large"></dd>
</dl>
*/
