/*
  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="60" height="11" /></dt>'
	+'<dd id="small-button">'
	+'<a onclick="fsSelector.setFontSize( \'small\' )">'
	+'<img src="'+ commonDir +'images/header_bt02.gif" alt="文字サイズ変更：小" width="28" height="23" class="rollover-fsbutton" id="fsbutton-small" />'
	+'</a>'
	+'</dd>'
	+'<dd id="medium-button">'
	+'<a onclick="fsSelector.setFontSize( \'medium\' )">'
	+'<img src="'+ commonDir +'images/header_bt03.gif" alt="文字サイズ変更：中" width="28" height="23" class="rollover-fsbutton" id="fsbutton-medium" />'
	+'</a>'
	+'</dd>'
	+'<dd id="large-button">'
	+'<a onclick="fsSelector.setFontSize( \'large\' )">'
	+'<img src="'+ commonDir +'images/header_bt04.gif" alt="文字サイズ変更：大" width="28" height="23" 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_2/images/header_tx01.gif" alt="文字サイズ" width="60" height="11" /></dt>
<dd><img src="common_2/images/header_bt02.gif" alt="文字サイズ変更：小" width="28" height="23" class="rollover-fsbutton" id="fsbutton-small" /></dd>
<dd><img src="common_2/images/header_bt03.gif" alt="文字サイズ変更：中" width="28" height="23" class="rollover-fsbutton" id="fsbutton-large" /></dd>
<dd><img src="common_2/images/header_bt04.gif" alt="文字サイズ変更：大" width="28" height="23" class="rollover-fsbutton" id="fsbutton-large" /></dd>
</dl>
*/
