function header(m)
{
  menu_text=new Array("トップ","会の紹介","お知らせ","お問い合わせ","掲示板","募集","スタッフブログ","リンク集");
  menu_link=new Array("index.html","introduction/greeting_kobayashi.html","news/top/news.html","faq/faq.html","bbs/bbs.html","invitation/invitation.html","blog/blog.html","link/link.html");
  if( m == "トップ" )
  {
    base = "./";
  }
  else
  {
    base = "../";
  }
  if( m == "" || m == "お知らせ")
  {
    base = "../../";
  }

  document.open();
  document.write('  <div id="pageHeader"><!-- Start page header -->');
  document.write('    <div id="grad">');
  document.write('      <img src="',base,'image/title_back.jpg" alt="" style="width: 800px; height: 100px;" />');
  document.write('    </div>');
  document.write('    <img src="',base,'image/flag.png" alt="emblem" style="width:64px;height:85px;left:50px;top:5px;z-index:1" />');
  document.write('    <h1 style="text-align:center">ネパールで野球「ラリグラスの会」</h1>');
  document.write('    <h4 style="text-align:center">ネパールに野球を。ネパールに笑顔を。</h4>');
  document.write('    <img src="',base,'image/emblem.png" alt="emblem" style="width:68px;height:90px;right:50px;top:5px;z-index:1" />');
  document.write('  </div>');
  document.write('  <div id="navcontainer"><!-- Start Navigation -->');
  document.write('    <div id="top_grad">');
  document.write('      <img src="',base,'rw_common/themes/cameo/images/menu_top_grad.png" alt="" style="width: 3000px; height: 30px;" />');
  document.write('    </div>');
  document.write('    <ul>');
  for(i = 0; i<8; i++)
  {
    document.write('    <li><a href="',base,menu_link[i],'" rel="self" ');
    if(menu_text[i] == m)
    {
      document.write('id="current"');
    }
    document.write('>',menu_text[i],'</a></li>');
  }
  document.write('  </ul>');
  document.write('  <div class="clearer">');
  document.write('  </div><!-- End navigation -->');
  document.write('</div>');
  document.close();
}

function footer()
{
  var _rwObsfuscatedHref = "mailto:info@nepalbaseball.net";
  document.open();
  document.write('  <div id="footer"><!-- Start Footer -->');
  document.write('    <p>&copy; 2009 Circle Laligurans all rights reserved.');
  document.write('    </p>');
  document.write('    <div id="breadcrumbcontainer"><!-- Start the breadcrumb wrapper -->');
  document.write('    </div><!-- End breadcrumb -->');
  document.write('  </div><!-- End Footer -->');
}
