// JavaScript Document
//******** 非対応環境かどうかを判断する。********
function ifSupported() {
    if ((navigator.userAgent.indexOf('Opera/6.')>=0) || (navigator.userAgent.indexOf('Opera 6.')>=0)) {
        return(0);
        }
    if (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.getElementById(id).style.display!='block') {
        document.getElementById(id).style.display='block';
        }
    else {
        document.getElementById(id).style.display='none';
        }
    return;
    }