/* ****************************************************************
   文字サイズ変更のhtml書き出し
**************************************************************** */
str = location.search;
str = str.substring(1,str.length);
fname = location.href;

if(document.layers){
	document.write('');
}else{
	if (str != "print") {
		document.write('<ul>');
		document.write('<li id="fontS">')
		document.write('<a href="#" onclick="setActiveStyleSheet(\'fontS\'); return false;" title="文字サイズ小"><span>小</span></a></li>');
		document.write('<li id="fontM">')
		document.write('<a href="#" onclick="setActiveStyleSheet(\'fontM\'); return false;" title="文字サイズ中"><span>中</span></a></li>')
		document.write('<li id="fontL">')
		document.write('<a href="#" onclick="setActiveStyleSheet(\'fontL\'); return false;" title="文字サイズ大"><span>大</span></a></li>')
		document.write('</ul>');
	}
}