

//！□初期設定とパスをセット
var load_path;

//■ページの初期設定
//引数：ルート(設定ファイルの設置ディレクトリ)からの相対パス
//戻値：無し
//説明：ページの初期設定群
//備考：css読込で使用する「@import」は、Netscape 4.x及びWindows IE 4以前で無効
function init_set(path){
	//パスを設定(グローバル)
	load_path = path;
	
	//stylesheet
	set_stylefile (load_path+'css/');
}


//！■css分岐
//引数：パス
//戻値：無し
//説明：ブラウザ(UserAgent)により、フォント設定用cssを分岐させる
//備考：css読込で使用する「@import」は、Netscape 4.x及びWindows IE 4以前で無効
//Windows[IE6.0以降、FF1.5以降、NS7.1以降、OP8.5以降]、Mac OS 9[NS7.02以降]、Mac OS X[SF2.02以降]に対応
//他OS、ブラウザの場合other.cssに分岐
function set_stylefile(filepath) {
	document.write('<style type="text/css">'+"\n");
	document.write('<!--'+"\n");
	
	//base.css
	document.write('@import url('+filepath+'base.css);'+"\n");
	
	if(navigator.userAgent.indexOf("Win") != -1){
		//Windows
		if(navigator.userAgent.indexOf("Firefox") != -1){
			//Firefox
			document.write('@import url('+filepath+'win_ff.css);'+"\n");
		}else if(navigator.userAgent.indexOf("Netscape") != -1){
			//Netscape
			document.write('@import url('+filepath+'win_ns.css);'+"\n");
		}else if(navigator.userAgent.indexOf("Opera") != -1){
			//Netscape
			document.write('@import url('+filepath+'win_op.css);'+"\n");
		}else if(navigator.userAgent.indexOf("MSIE") != -1){
			//Internet Explorer
			document.write('@import url('+filepath+'win_ie.css);'+"\n");
		}else{
			//Other
			document.write('@import url('+filepath+'other.css);'+"\n");//未対応
		}
	}else if(navigator.userAgent.indexOf("Mac OS X") != -1){
		//Mac OS X
		if(navigator.userAgent.indexOf("Safari") != -1){
			//Safari
			document.write('@import url('+filepath+'macx_sf.css);'+"\n");
		}else if(navigator.userAgent.indexOf("Firefox") != -1){
			//Firefox
			document.write('@import url('+filepath+'other.css);'+"\n");//未対応
		}else{
			//Other
			document.write('@import url('+filepath+'other.css);'+"\n");//未対応
		}
	}else if(navigator.userAgent.indexOf("Mac") != -1){
		//Mac OS 9
		if(navigator.userAgent.indexOf("Netscape") != -1){
			//Netscape
			document.write('@import url('+filepath+'mac9_ns.css);'+"\n");
		}else{
			//Other
			document.write('@import url('+filepath+'other.css);'+"\n");//未対応
		}
	}else{
		//Other
		document.write('@import url('+filepath+'other.css);'+"\n");//未対応
	}
	
	document.write('-->'+"\n");
	document.write('</style>'+"\n");
}

//■クイックリンク
function ctgjump(selctg)
{
	n = selctg.selectedIndex;
	txt = selctg.options[n].text;

	if (txt == ""){
		window.open(selctg.options[n].value,"sub","directories=1,location=1,menubar=1,scrollbars=1,status=1,toolbar=1,resizable=1");
	}else if (selctg.options[n].value == ""){
		return;
	}else{
		location.href = selctg.options[n].value;
	}
}


//■訪問者別indexメニュー
function print_hmns_menu(data){
	
	//北大で学びたい皆様へ
	if(data == 'koukou'){
		document.write('<a href="'+load_path+'bureau/nyu/index.html" onMouseOver="chimg(\'aaa\')" onMouseOut="active(\'aaa\')"><img name="mmmenu01" src="'+load_path+'image/img_hmns_menu01_d.gif" width="180" height="25" border="0" alt="北大で学びたい皆様へ"></a><br>'+"\n");
	}else{
		document.write('<a href="'+load_path+'bureau/nyu/index.html" onMouseOver="chimg(\'aaa\')" onMouseOut="reimg(\'aaa\')"><img name="mmmenu01" src="'+load_path+'image/img_hmns_menu01.gif" width="180" height="25" border="0" alt="北大で学びたい皆様へ"></a><br>'+"\n");
	}
	
	//地域の皆様へ
	if(data == 'chiiki'){
		document.write('<a href="'+load_path+'hmns/chiiki.html" onMouseOver="chimg(\'bbb\')" onMouseOut="active(\'bbb\')"><img name="mmmenu02" src="'+load_path+'image/img_hmns_menu02_d.gif" width="180" height="25" border="0" alt="地域の皆様へ"></a><br>'+"\n");
	}else{
		document.write('<a href="'+load_path+'hmns/chiiki.html" onMouseOver="chimg(\'bbb\')" onMouseOut="reimg(\'bbb\')"><img name="mmmenu02" src="'+load_path+'image/img_hmns_menu02.gif" width="180" height="25" border="0" alt="地域の皆様へ"></a><br>'+"\n");
	}

	//企業の皆様へ
	if(data == 'kigyou'){
		document.write('<a href="'+load_path+'hmns/kigyou.html" onMouseOver="chimg(\'ccc\')" onMouseOut="active(\'ccc\')"><img name="mmmenu03" src="'+load_path+'image/img_hmns_menu03_d.gif" width="180" height="25" border="0" alt="企業の皆様へ"></a><br>'+"\n");
	}else{
		document.write('<a href="'+load_path+'hmns/kigyou.html" onMouseOver="chimg(\'ccc\')" onMouseOut="reimg(\'ccc\')"><img name="mmmenu03" src="'+load_path+'image/img_hmns_menu03.gif" width="180" height="25" border="0" alt="企業の皆様へ"></a><br>'+"\n");
	}

	//留学生の皆様へ
	if(data == 'ryugaku'){
		document.write('<a href="'+load_path+'hmns/ryugaku.html" onMouseOver="chimg(\'ddd\')" onMouseOut="active(\'ddd\')"><img name="mmmenu04" src="'+load_path+'image/img_hmns_menu04_d.gif" width="180" height="25" border="0" alt="留学生の皆様へ"></a><br>'+"\n");
	}else{
		document.write('<a href="'+load_path+'hmns/ryugaku.html" onMouseOver="chimg(\'ddd\')" onMouseOut="reimg(\'ddd\')"><img name="mmmenu04" src="'+load_path+'image/img_hmns_menu04.gif" width="180" height="25" border="0" alt="留学の皆様へ"></a><br>'+"\n");
	}
	
	//卒業生の皆様へ
	if(data == 'sostugyo'){
		document.write('<a href="'+load_path+'hmns/sostugyo.html" onMouseOver="chimg(\'eee\')" onMouseOut="active(\'eee\')"><img name="mmmenu05" src="'+load_path+'image/img_hmns_menu05_d.gif" width="180" height="25" border="0" alt="卒業生の皆様へ"></a><br>'+"\n");
	}else{
		document.write('<a href="'+load_path+'hmns/sostugyo.html" onMouseOver="chimg(\'eee\')" onMouseOut="reimg(\'eee\')"><img name="mmmenu05" src="'+load_path+'image/img_hmns_menu05.gif" width="180" height="25" border="0" alt="卒業生の皆様へ"></a><br>'+"\n");
	}
	
	//在学生の皆様へ
	if(data == 'zaigaku'){
		document.write('<a href="'+load_path+'hmns/zaigaku.html" onMouseOver="chimg(\'fff\')" onMouseOut="active(\'fff\')"><img name="mmmenu06" src="'+load_path+'image/img_hmns_menu06_d.gif" width="180" height="25" border="0" alt="在学生の皆様へ"></a><br>'+"\n");
	}else{
		document.write('<a href="'+load_path+'hmns/zaigaku.html" onMouseOver="chimg(\'fff\')" onMouseOut="reimg(\'fff\')"><img name="mmmenu06" src="'+load_path+'image/img_hmns_menu06.gif" width="180" height="25" border="0" alt="在学生の皆様へ"></a><br>'+"\n");
	}


}




//■2nd 3rdヘッダー
function print_header_2nd(){

	document.write('<div id="header">');
	document.write('<div id="header-logo-block">');
	document.write('<div id="header-logo"><a href="http://www.hokudai.ac.jp/"><img src="'+load_path+'image/header-logo_s.gif" width="159" height="50" alt="北海道大学 Hokkaido University" border="0"></a></div>');
	document.write('<div id="header-other-2nd">');
	document.write('<form id="header-search" action="http://google.com/cse">');
	document.write('<a class="header-en" href="'+load_path+'"><span class="header-en-rect">■</span>ホーム</a>&nbsp;&nbsp;&nbsp;<a class="header-en" href="'+load_path+'en/"><span class="header-en-rect">■</span>ENGLISH</a>&nbsp;&nbsp;&nbsp;<a class="header-en" href="'+load_path+'cn/"><span class="header-en-rect">■</span>中文</a>&nbsp;&nbsp;&nbsp;サイト内検索&nbsp;<input type="text" name="q" size="20" maxlength="255" value=""><input type="hidden" name="cx" value="001695135354520438532:hwlagapdjse">&nbsp;<input type="image" src="'+load_path+'image/bt-search.gif" width="60" height="20" border="0" alt="検索"><input type="hidden" name="cof" value="FORID:0" /><input type="hidden" name="ie" value="Shift_JIS"><input type="hidden" name="oe" value="UTF-8">&nbsp;<a href="'+load_path+'bureau/search/">様々な検索方法</a></form>');
	document.write('</div>');
	document.write('</div>');
	document.write('</div>');

}




//■2nd 3rdメニュー(分岐)
//引数：data＝アクティブ状態にするコンテンツ名、gazou＝2nd用メイン画像 or noimageで3rdに切替、gazoualt＝2ndメイン画像のalt or 空白で3rd
//戻値：無し
//説明：メニューの表示
//備考：アクティブ状態が有るメニューの場合はこちらを使用する
function print_menu_2nd(data,gazou){

	document.write('<div id="visitor-menu">');
	document.write('<ul>');
	document.write('<li id="wide"><a href="'+load_path+'bureau/nyu/index.html"><span class="visitor-menu-list-circle">●</span>&nbsp;北大で学びたい方へ（学生募集・入試）</a></li>');
	document.write('<li><a href="'+load_path+'hmns/chiiki.html"><span class="visitor-menu-list-circle">●</span>&nbsp;地域の方へ</a></li>');
	document.write('<li><a href="'+load_path+'hmns/kigyou.html"><span class="visitor-menu-list-circle">●</span>&nbsp;企業の方へ</a></li>');
	document.write('<li><a href="'+load_path+'hmns/ryugaku.html"><span class="visitor-menu-list-circle">●</span>&nbsp;留学生の方へ</a></li>');
	document.write('<li><a href="'+load_path+'hmns/sostugyo.html"><span class="visitor-menu-list-circle">●</span>&nbsp;卒業生の方へ</a></li>');
	document.write('<li><a href="'+load_path+'hmns/zaigaku.html"><span class="visitor-menu-list-circle">●</span>&nbsp;在学生の方へ</a></li>');
	document.write('</ul>');
	document.write('</div>');
	document.write('<div id="global-menu">');
	document.write('<ul class="global-menu-list">');
	document.write("<li class=\"global-menu-off\" onMouseOver=\"this.className='global-menu-on'\" onMouseOut=\"this.className='global-menu-off'\"><a href=\"/bureau/top-sub/sitemap.html#annai\">大学案内</a>");
	document.write('<ol class="global-child-list">');
	document.write('<li><a href="'+load_path+'bureau/info-j/info.htm">大学紹介</a></li>');
	document.write('<li><a href="'+load_path+'bureau/socho/index.htm">総長から</a></li>');
	document.write('<li><a href="'+load_path+'bureau/news/yakuin/index.html">役員室から</a></li>');
	document.write('<li><a href="'+load_path+'bureau/top-sub/gakubu-link.htm">学部・大学院・研究所<br />・センター等</a></li>');
	document.write('<li><a href="http://www.huhp.hokudai.ac.jp/index.html">病院</a></li>');
	document.write('<li><a href="http://www.lib.hokudai.ac.jp/">附属図書館</a></li>');
	document.write('<li><a href="http://www.museum.hokudai.ac.jp/">総合博物館</a></li>');
	document.write('<li><a href="'+load_path+'fsc/bg/">植物園</a></li>');
	document.write('<li><a href="http://www.vetmed.hokudai.ac.jp/VMTH/index.html">動物病院</a></li>');
	document.write('</ol></li>');
	document.write("<li class=\"global-menu-off\" onMouseOver=\"this.className='global-menu-on'\" onMouseOut=\"this.className='global-menu-off'\"><a href=\"/bureau/top-sub/sitemap.html#nyugaku\">学生生活</a>");
	document.write('<ol class="global-child-list">');
	document.write('<li><a href="http://gakuseishien.academic.hokudai.ac.jp/">学生生活</a></li>');
	document.write('<li><a href="http://educate.academic.hokudai.ac.jp/syllabus/SYLLABUS.htm">講義内容</a></li>');
	document.write('<li><a href="http://educate.academic.hokudai.ac.jp/seiseki/GradeDistSerch.aspx">成績評価</a></li>');
	document.write('<li><a href="http://ccsup.academic.hokudai.ac.jp/cc07/index.html">就職支援 </a></li>');
	document.write('</ol></li>');
	document.write("<li class=\"global-menu-off\" onMouseOver=\"this.className='global-menu-on'\" onMouseOut=\"this.className='global-menu-off'\"><a href=\"/bureau/top-sub/sitemap.html#kenkyu\">研究・産学連携</a>");
	document.write('<ol class="global-child-list">');
	document.write('<li><a href="'+load_path+'sangaku/index.html">研究協力・産学連携</a></li>');
	document.write('<li><a href="http://hecate.general.hokudai.ac.jp/welcome/top-page-jpn.html">北大の研究者</a></li>');
	document.write('<li><a href="http://mm.general.hokudai.ac.jp/information/565.html">北大を特徴づける研究</a></li>');
	document.write('<li><a href="http://www.mcip.hokudai.ac.jp/">産学連携本部</a></li>');
	document.write('<li><a href="http://nsh.cris.hokudai.ac.jp/cbsearchj/help-ns/index.htm">NSハイウェイ<br />（専門家はどこ？） </a></li>');
	document.write('</ol></li>');
	document.write("<li class=\"global-menu-off\" onMouseOver=\"this.className='global-menu-on'\" onMouseOut=\"this.className='global-menu-off'\"><a href=\"/bureau/top-sub/sitemap.html#kouryu\">国際交流</a>");
	document.write('<ol class="global-child-list">');
	document.write('<li><a href="http://www.isc.hokudai.ac.jp/www_ISC/cms/cgi-bin/index.pl">留学・留学生情報</a></li>');
	document.write('<li><a href="'+load_path+'bureau/e/wabun/index.html">国際本部</a></li>');
	document.write('<li><a href="http://www.hokudai.cn/">北京オフィス </a></li>');
	document.write('<li><a href="http://www.hokudai.kr/">ソウルオフィス </a></li>');
	document.write('</ol></li>');
	document.write("<li class=\"global-menu-off\" onMouseOver=\"this.className='global-menu-on'\" onMouseOut=\"this.className='global-menu-off'\"><a href=\"/bureau/top-sub/sitemap.html#kouhou\">広報・公開</a>");
	document.write('<ol class="global-child-list">');
	document.write('<li><a href="'+load_path+'bureau/top-sub/koukaikoza.htm">公開講座・<br />オープンキャンパス</a></li>');
	document.write('<li><a href="'+load_path+'bureau/populi/index.html">北大広報誌</a></li>');
	document.write('<li><a href="'+load_path+'bureau/info-j/center-new/index.html">交流プラザ</a></li>');
	document.write('<li><a href="'+load_path+'goods_shop/index.html">北大グッズショップ</a></li>');
	document.write('<li><a href="'+load_path+'bureau/tenken/index.html">点検・評価</a></li>');
	document.write('<li><a href="'+load_path+'bureau/top-sub/johokoukai.htm">情報公開</a></li>');
	document.write('<li><a href="'+load_path+'bureau/kojin-jyoho/index.html">個人情報</a></li>');
	document.write('<li><a href="'+load_path+'jimuk/reiki/reiki_menu.html">北海道大学規則集</a></li>');
	document.write('<li><a href="'+load_path+'bureau/kaigi/index.htm">学会等開催情報</a></li>');
	document.write('<li><a href="http://ocw.hokudai.ac.jp/index.php?lang=ja">講義情報の無償公開<br />オープンコースウェア </a></li>');
	document.write('</ol></li>');
	document.write('</ul>');
	document.write('</div>');
	document.write('<div id="global-menu-end">&nbsp;</div>');
	
	//旧ソースに迎合 by M.Sasaki
	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	
	
	
	//学内情報／新着情報／2nd／3rdの分岐　true-3rd　false-2nd
	//フッター・バナーコンテンツ　交通アクセス／サイトマップ／携帯サイト／北大カード／COE
	
	//↓ここから訪問者別
	if(gazou == 'koukou'){
	
		document.write('<td style="background-image: url('+load_path+'image/hmns_main_koukou.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="180"><br>'+"\n");
	
	
	}else if(gazou == 'chiiki'){
	
	
		document.write('<td style="background-image: url('+load_path+'image/hmns_main_chiiki.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="180"><br>'+"\n");
	
	
	}else if(gazou == 'ryugaku'){
	
	
		document.write('<td style="background-image: url('+load_path+'image/hmns_main_ryugaku.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="180"><br>'+"\n");
	
	
	}else if(gazou == 'sostugyo'){
	
	
		document.write('<td style="background-image: url('+load_path+'image/hmns_main_sostugyo.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="180"><br>'+"\n");
	
	
	}else if(gazou == 'zaigaku'){
	
	
		document.write('<td style="background-image: url('+load_path+'image/hmns_main_zaigaku.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="180"><br>'+"\n");
	
	}else if(gazou == 'kigyou'){
	
	
		document.write('<td style="background-image: url('+load_path+'image/hmns_main_kigyou.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="180"><br>'+"\n");




	//↑ここまで訪問者別
	//↓ここからフッター・バナーコンテンツ etc
	}else if(gazou == 'noimage'){
	
	
		document.write('<td style="background-image: url('+load_path+'image/3rd_contents_line_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/3rd_contents_line.gif" width="790" height="30"><br>'+"\n");
	
	
	}else if(gazou == 'noimage2'){
	
	
		document.write('<td style="background-image: url('+load_path+'image/3rd_contents_line_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/3rd_contents_line2.gif" width="790" height="30"><br>'+"\n");
	
	
	}else if(gazou == 'access'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/access_title.gif" width="790" height="60" alt="交通アクセス"><br>'+"\n");
	
	
	}else if(gazou == 'saiyo'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/saiyo_title.gif" width="790" height="60" alt="採用情報"><br>'+"\n");
	
	
	}else if(gazou == 'sitemap'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/sitemap_title.gif" width="790" height="60" alt="サイトマップ"><br>'+"\n");
	
	
	}else if(gazou == 'mobile'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/mobile_title.gif" width="790" height="60" alt="携帯サイト"><br>'+"\n");
	
	
	}else if(gazou == 'sitepolicy'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/sitepolicy_title.gif" width="790" height="60" alt="サイトポリシー"><br>'+"\n");
	
	
	}else if(gazou == 'hcard'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/hcard_title.gif" width="790" height="60" alt="北大カード"><br>'+"\n");
	
	
	}else if(gazou == 'toi'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/toi_title.gif" width="790" height="60" alt="お問い合わせ"><br>'+"\n");
	
	
	}else if(gazou == 'link'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/link_title.gif" width="790" height="60" alt="関連リンク"><br>'+"\n");
	
	
	}else if(gazou == 'coe'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/coe_title.gif" width="790" height="60" alt="COE"><br>'+"\n");
	

	}else if(gazou == 'jimu'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/jimuk_title.gif" width="790" height="60" alt="事務局"><br>'+"\n");


	}else if(gazou == 'shinchaku'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/shinchaku_title.gif" width="790" height="60" alt="新着情報"><br>'+"\n");
	
	
	}else if(gazou == 'shinchakuichiran'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/shinchaku_ichiran_title.gif" width="790" height="60" alt="新着情報一覧"><br>'+"\n");


	}else if(gazou == 'nendoichiran'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/nendo_ichiran_title.gif" width="790" height="60" alt="年度ごと情報一覧"><br>'+"\n");


	}else if(gazou == 'eventcalender'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/event_calender_title.gif" width="790" height="60" alt="新着情報一覧"><br>'+"\n");


	}else if(gazou == 'kako'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/kako_title.gif" width="790" height="60" alt="過去の情報"><br>'+"\n");
	
	
	}else if(gazou == 'kakoichiran'){
		document.write('<td style="background-image: url('+load_path+'image/shinchaku_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/kako_ichiran_title.gif" width="790" height="60" alt="過去の情報一覧"><br>'+"\n");
	
	
	}else if(gazou == 'gakunai'){
		document.write('<td style="background-image: url('+load_path+'image/gakunai_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/kyosyoku_title.jpg" width="790" height="135" alt="教職員向け"><br>'+"\n");
	
	
	}else if(gazou == 'gakunai2'){
		document.write('<td style="background-image: url('+load_path+'image/gakunai_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/kyosyoku_new_title.jpg" width="790" height="135" alt="新着情報"><br>'+"\n");
	
	
	}else if(gazou == 'gakunai3'){
		document.write('<td style="background-image: url('+load_path+'image/gakunai_title_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/kyosyoku_kako_title.jpg" width="790" height="135" alt="過去の情報"><br>'+"\n");
	
	
	//↑ここまでフッター・バナーコンテンツ etc
	
	//2ndのコンテンツ分岐
	//大学案内
	}else if(gazou == 'annai'){
		document.write('<td style="background-image: url('+load_path+'image/2nd_main_annai.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="165"><br>'+"\n");
		document.write('</td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td style="background-image: url('+load_path+'image/2nd_contents_line_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/2nd_contents_line.gif" width="790" height="30" alt="Contents"><br>'+"\n");
	
	//学生生活
	}else if(gazou == 'nyugaku'){
	
		document.write('<td style="background-image: url('+load_path+'image/2nd_main_nyugaku.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="165"><br>'+"\n");
		document.write('</td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td style="background-image: url('+load_path+'image/2nd_contents_line_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/2nd_contents_line.gif" width="790" height="30" alt="Contents"><br>'+"\n");
	
	//研究・産学連携
	}else if(gazou == 'kenkyu'){
	
		document.write('<td style="background-image: url('+load_path+'image/2nd_main_kenkyu.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="165"><br>'+"\n");
		document.write('</td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td style="background-image: url('+load_path+'image/2nd_contents_line_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/2nd_contents_line.gif" width="790" height="30" alt="Contents"><br>'+"\n");
	
	//国際本部
	}else if(gazou == 'kouryu'){
	
		document.write('<td style="background-image: url('+load_path+'image/2nd_main_kouryu.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="165"><br>'+"\n");
		document.write('</td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td style="background-image: url('+load_path+'image/2nd_contents_line_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/2nd_contents_line.gif" width="790" height="30" alt="Contents"><br>'+"\n");
	
	//広報・公開
	}else if(gazou == 'kouhou'){
	
		document.write('<td style="background-image: url('+load_path+'image/2nd_main_kouhou.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/space.gif" width="790" height="165"><br>'+"\n");
		document.write('</td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td style="background-image: url('+load_path+'image/2nd_contents_line_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'image/2nd_contents_line.gif" width="790" height="30" alt="Contents"><br>'+"\n");
	
	//WEBカメラ
	}else if(gazou == 'webcamera'){
	
		document.write('<td style="background-image: url('+load_path+'image/tour_head_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path+'webcamera/image/bg_top.gif" width="790" height="30"><br>'+"\n");

	}
		
		
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('</div>'+"\n");
	document.write('<!----------------mainmenu:end----------------------->'+"\n");
	
}









//■バーチャルツアー用2nd メニューとタイトル(サブメニューなし)
function print_menu_tour(){

	document.write('<!----------------mainmenu:start---------------------->'+"\n");
	document.write('<div style="position:relative;left:0px;top:0px;z-index:1;">'+"\n");
	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td style="background-image: url('+load_path+'image/m_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
	document.write('<table width="805" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/m_left.gif" width="15" height="45"></td>'+"\n");
	//大学案内
	document.write('<td width="155" align="left" valign="top"><a href="'+load_path+'bureau/info-j/info.htm" id="h-wihte" onMouseOver="chimg(\'a\')" onMouseOut="reimg(\'a\')"><img name="menu01" src="'+load_path+'image/m_anai.gif" width="155" height="45" border="0" alt="大学案内"></a></td>'+"\n");
	
	//学生生活
	document.write('<td width="155" align="left" valign="top"><a href="'+load_path+'bureau/nyu/menu.htm" onMouseOver="chimg(\'b\')" onMouseOut="reimg(\'b\')"><img name="menu02" src="'+load_path+'image/m_nyugaku.gif" width="155" height="45" border="0" alt="学生生活"></a></td>'+"\n");
	
	//研究・産学連携
	document.write('<td width="155" align="left" valign="top"><a href="'+load_path+'sangaku/index.html" onMouseOver="chimg(\'c\')" onMouseOut="reimg(\'c\')"><img name="menu03" src="'+load_path+'image/m_kenkyu.gif" width="155" height="45" border="0" alt="研究・産学連携"></a></td>'+"\n");
	
	//国際本部
	document.write('<td width="155" align="left" valign="top"><a href="'+load_path+'bureau/e/wabun/index.html" onMouseOver="chimg(\'d\')" onMouseOut="reimg(\'d\')"><img name="menu04" src="'+load_path+'image/m_kokusai.gif" width="155" height="45" border="0" alt="国際本部"></a></td>'+"\n");
	
	//広報・公開
	document.write('<td width="155" align="left" valign="top"><a href="'+load_path+'bureau/top-sub/koukaikoza.htm" onMouseOver="chimg(\'e\')" onMouseOut="reimg(\'e\')"><img name="menu05" src="'+load_path+'image/m_kouho.gif" width="155" height="45" border="0" alt="広報・公開"></a></td>'+"\n");
	
	document.write('<td width="155" align="left" valign="top"><img src="'+load_path+'image/m_right.gif" width="5" height="45"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	
	document.write('<td style="background-image: url('+load_path+'image/tour_head_bg.gif);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
	document.write('<img src="'+load_path+'image/space.gif" width="1" height="30"><br>'+"\n");
	
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('</div>'+"\n");
	document.write('<!----------------mainmenu:end----------------------->'+"\n");

}










//■2nd 3rd左メニュー(分岐)
//引数：pageno＝secondで2nd用 thirdで3rd用、data＝コンテンツごとのリンク分岐、ctitle＝3rd用コンテンツタイトル(2ndは空白)、talt＝タイトルのalt(2ndは空白)
//戻値：無し
//説明：メニューの表示
function print_leftmenu_2nd(pageno,data,ctitle){ 
	if(pageno == 'second'){
		
		
		document.write('<table background="'+load_path+'image/2nd_menu_bg.gif" width="180" border="0" cellspacing="0" cellpadding="0">'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		
		
	}else if(pageno == 'third'){
		
		
		document.write('<table width="210" border="0" cellspacing="0" cellpadding="0">'+"\n");
		document.write('<tr>'+"\n");
		
		
		if(ctitle == 'annai'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path+'image/3rd_menu_title_anai.gif" width="210" height="115" alt="大学案内"><br>'+"\n");
			
		}else if(ctitle == 'nyugaku'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path+'image/3rd_menu_title_nyugaku.gif" width="210" height="115" alt="学生生活"><br>'+"\n");
			
		}else if(ctitle == 'kenkyu'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path+'image/3rd_menu_title_kenkyu.gif" width="210" height="115" alt="研究・産学連携"><br>'+"\n");
			
		}else if(ctitle == 'kouryu'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path+'image/3rd_menu_title_kouryu.gif" width="210" height="115" alt="国際本部"><br>'+"\n");
		
		}else if(ctitle == 'seoul'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path+'image/3rd_menu_title_seoul.gif" width="210" height="96" alt="ソウル大学とのジョイントシンポジウム"><br>'+"\n");
			
		}else if(ctitle == 'kouhou'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path+'image/3rd_menu_title_kouhou.gif" width="210" height="115" alt="広報・公開"><br>'+"\n");
			
		}
		
		
		
		document.write('<table background="'+load_path+'image/2nd_menu_bg.gif" width="180" border="0" cellspacing="0" cellpadding="0">'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		
		
	}else{
		
		document.write('error!'+"\n");
	
	}
	
	//大学紹介：start--------------------------------------------------
	
	if(data == 'annai'){
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/info-j/info.htm" class="m2">大学紹介</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/socho/index.htm" class="m2">総長から</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/news/yakuin/index.html" class="m2">役員室から</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/top-sub/gakubu-link.htm" class="m2">学部・大学院・研究所<br>・センター等</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://www.huhp.hokudai.ac.jp/index.html" class="m2">病院</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://www.lib.hokudai.ac.jp/" class="m2">附属図書館</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://www.museum.hokudai.ac.jp/" class="m2">総合博物館</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'fsc/bg/" class="m2">植物園_</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://www.vetmed.hokudai.ac.jp/VMTH/index.html" class="m2">動物病院</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//大学紹介：end----------------------------------------------------------
	
	//学生生活：start--------------------------------------------------
	
	if(data == 'nyugaku'){
		
		
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/gakumu/gakusei/index.htm" class="m2">学生生活</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://educate.academic.hokudai.ac.jp/syllabus/SYLLABUS.htm" class="m2">講義内容</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/gakumu/gclass/mokuji.htm" class="m2">大学院共通授業科目</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://educate.academic.hokudai.ac.jp/seiseki/GradeDistSerch.aspx" class="m2">成績評価</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://ccsup.academic.hokudai.ac.jp/cc07/index.html" class="m2">就職支援</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//学生生活：end----------------------------------------------------
	
	//研究・産学連携：start--------------------------------------------------
	
	if(data == 'kenkyu'){
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'sangaku/index.html" class="m2">研究協力・産学連携</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://hecate.general.hokudai.ac.jp/welcome/top-page-jpn.html" class="m2">北大の研究者</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://mm.general.hokudai.ac.jp/information/565.html" class="m2">北大を特徴づける研究</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://www.mcip.hokudai.ac.jp/" class="m2">産学連携本部</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://nsh.cris.hokudai.ac.jp/cbsearchj/help-ns/index.htm" class="m2">NSハイウェイ<br>（専門家はどこ？）</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//研究・産学連携：end----------------------------------------------------
	
	//国際本部：start--------------------------------------------------------
	
	if(data == 'kouryu'){
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://www.isc.hokudai.ac.jp/www_ISC/students/students.cgi" class="m2">留学・留学生情報</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/e/wabun/index.html" class="m2">国際本部</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//国際本部：end----------------------------------------------------------
	
	//広報・公開：start------------------------------------------------------
	
	if(data == 'kouhou'){
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/top-sub/koukaikoza.htm" class="m2">公開講座・オープンキャンパス</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/populi/index.html" class="m2">北大広報誌</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/info-j/center-new/index.html" class="m2">交流プラザ</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'goods_shop/index.html" class="m2">北大グッズショップ</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/tenken/index.html" class="m2">点検・評価</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/top-sub/johokoukai.htm" class="m2">情報公開</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/kojin-jyoho/index.html" class="m2">個人情報</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'jimuk/reiki/reiki_menu.html" class="m2">北海道大学規則集</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/kaigi/index.htm" class="m2">学会等開催情報</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="http://ocw.hokudai.ac.jp/index.php?lang=ja" class="m2">講義情報の無償公開<br>オープンコースウェア</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//広報・公開：end--------------------------------------------------------
	
	//シンポジウム：start--------------------------------------------------------
	
	if(data == 'seoul'){
		document.write('<td align="left" valign="middle" colspan="4" background="'+load_path+'image/3rd_menu_title_bg.gif" height="70">'+"\n");
		document.write('<font class="f12" style="margin:7px 0 0 36px;height:62px;display:block;"><a href="'+load_path+'bureau/e/wabun/seoul/index.html" class="m2">トップ</a></font></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/e/wabun/seoul/12.html" class="m2">第12回</a><br>（2009年11月19-21日）</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/e/wabun/seoul/11.html" class="m2">第11回</a><br>（2008年11月6-8日）</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/e/wabun/seoul/10.html" class="m2">第10回</a><br>（2008年1月24-26日）</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'bureau/e/wabun/seoul/09.html" class="m2">第9回</a><br>（2007年1月24-26日）</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/2nd_menu_line01.gif" width="150" height="10"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/2nd_menu_icon01.gif" width="20" height="15"></td>'+"\n");
		document.write('<td align="left" valign="middle"><font class="f12"><a href="'+load_path+'en/relations/internationalization/seoul/index.html"  class="m2" >ジョイントシンポジウム (in English)</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<tr>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//シンポジウム：end----------------------------------------------------------
	
	
	
	if(pageno == 'third'){
	
		document.write('</td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	
	}
	
	
}



//■2nd,3rdフッター
function print_footer_2nd(){

	document.write('<div id="footer">');
	document.write('<div id="footer-menu">');
	document.write('<div id="footer-menu-box">');
//	document.write('<div id="footer-menu-left"><a href="">教職員向け</a></div>');
	document.write('<div id="footer-menu-right">');
	document.write('<a href="'+load_path+'footer/ft_link.html">関連リンク</a>｜<a href="'+load_path+'bureau/top-sub/sitemap.html">サイトマップ</a>｜<a href="'+load_path+'footer/ft_sitepolicy.html">サイトポリシー</a>｜<a href="'+load_path+'footer/ft_toi.html">お問い合わせ</a>｜<a href="#pgtop">ページトップへ</a></div>');
	document.write('</div>');
	document.write('<div id="footer-credit">(C)&nbsp;COPYRIGHT HOKKAIDO UNIVERSITY. ALL RIGHTS RESERVED.</div>');
	document.write('</div>');
	document.write('</div>');

}

function hidePrInfo(){
	document.getElementById('whatsnew-pr-info').style.display = 'none';
}
