//******** 非対応環境かどうかを判断する。********
function ifSupported() {
	if (window.opera && (!document.all)) {
		return(0);
	}
	if (document.all || document.getElementById) { return(1) }
	return(0);
	}

//******** 対応環境ではサブメニューを予め非表示にする。********
if (ifSupported()) {
	document.write(
		'<style type="text/css">'+
		'.subMenu {'+
		'	display: none;'+
		'	}'+
		'</style>'
		);
	}

//******** サブメニューの表示/非表示を切替える。********
function subMenu(id) {
	if (ifSupported()==0) { return; }

	if (document.all) {
		if (document.all[id].style.display!='block') {
			document.all[id].style.display='block';
			}
		else {
			document.all[id].style.display='none';
			}
		return;
		}

	if (document.getElementById(id).style.display!='block') {
		document.getElementById(id).style.display='block';
		}
	else {
		document.getElementById(id).style.display='none';
		}
	return;
	}

