/**
 * www.tpa-kitatama.jp 共通スクリプト（メニュー表示等）
 * 
 * 2010.9.xx AGILE corp.
 * 
 */

  function chgimg( id, src ) {
    document.all.item( id ).src = src;
  }

  function upper_menu( pref ) {
    document.writeln( '    <div style="position:absolute; top:54px; left:510px; z-index:99;' );
    document.writeln( '                text-align: right; color: #666666;">' );
    document.writeln( '      <a href="' + pref + '/index.html"' );
    document.writeln( '         onmouseOver="chgimg(' + "'b1','" + pref + "/img/b01b.png'" + ');"' );
    document.writeln( '         onmouseOut ="chgimg(' + "'b1','" + pref + "/img/b01a.png'" + ');"' );
    document.writeln( '         class="non"><img name="b1" src="' + pref + '/img/b01a.png" width="48" height="12" border="0" alt="ホーム"></a>　' );
    document.writeln( '      <a href="' + pref + '/link.html"' );
    document.writeln( '         onmouseOver="chgimg(' + "'b5','" + pref + "/img/b05b.png'" + ');"' );
    document.writeln( '         onmouseOut ="chgimg(' + "'b5','" + pref + "/img/b05a.png'" + ');"' );
    document.writeln( '         class="non"><img name="b5" src="' + pref + '/img/b05a.png" width="44" height="12" border="0" alt="リンク"></a>　' );
    document.writeln( '      <a href="' + pref + '/sitemap.html"' );
    document.writeln( '         onmouseOver="chgimg(' + "'b2','" + pref + "/img/b02b.png'" + ');"' );
    document.writeln( '         onmouseOut ="chgimg(' + "'b2','" + pref + "/img/b02a.png'" + ');"' );
    document.writeln( '         class="non"><img name="b2" src="' + pref + '/img/b02a.png" width="73" height="13" border="0" alt="サイトマップ"></a>　' );
    document.writeln( '      <a href="mailto:mail&#64;tpa-kitatama.jp"' );
    document.writeln( '         onmouseOver="chgimg(' + "'b3','" + pref + "/img/b03b.png'" + ');"' );
    document.writeln( '         onmouseOut ="chgimg(' + "'b3','" + pref + "/img/b03a.png'" + ');"' );
    document.writeln( '         class="non"><img name="b3" src="' + pref + '/img/b03a.png" width="85" height="13" border="0" alt="お問い合わせ"></a>' );
    document.writeln( '      <br>' );
    document.writeln( '      <a href="http://202.238.75.64/scripts/cbag/ag.exe?" target="_blank"' );
    document.writeln( '         onmouseOver="chgimg(' + "'b6','" + pref + "/img/b06b.png'" + ');"' );
    document.writeln( '         onmouseOut ="chgimg(' + "'b6','" + pref + "/img/b06a.png'" + ');"' );
    document.writeln( '         class="non"><img name="b6" src="' + pref + '/img/b06a.png" width="114" height="13" border="0" alt="会員グループウェア"></a>　' );
    document.writeln( '      <a href="' + pref + '/kaiin/index.asp"' );
    document.writeln( '         onmouseOver="chgimg(' + "'b4','" + pref + "/img/b04b.png'" + ');"' );
    document.writeln( '         onmouseOut ="chgimg(' + "'b4','" + pref + "/img/b04a.png'" + ');"' );
    document.writeln( '         class="non"><img name="b4" src="' + pref + '/img/b04a.png" width="74" height="13" border="0" alt="会員ページ"></a>' );
    document.writeln( '    </div>' );
  }

  function footer_menu( pref ) {
    document.writeln( '      <div align="right">' );
    document.writeln( '        （<a href="#top">このページの先頭へ</a>）<br>' );
    document.writeln( '        <br>' );
    document.writeln( '        ／ <a href="' + pref + '/index.html" class="menu_bar2">ホーム</a> ' );
    document.writeln( '        ／ <a href="' + pref + '/link.html" class="menu_bar2">リンク</a> ' );
    document.writeln( '        ／ <a href="' + pref + '/sitemap.html" class="menu_bar2">サイトマップ</a> ' );
    document.writeln( '        ／ <a href="mailto:mail&#64;tpa-kitatama.jp" class="menu_bar2">お問い合わせ</a> ' );
    document.writeln( '        ／ <a href="http://202.238.75.64/scripts/cbag/ag.exe?" class="menu_bar2" target="_blank">会員グループウェア</a> ' );
    document.writeln( '        ／ <a href="' + pref + '/kaiin/index.asp" class="menu_bar2">会員ページ</a> ' );
    document.writeln( '        ／' );
    document.writeln( '      </div>' );
  }

