﻿

//！□初期設定とパスをセット
var load_path;

//■ページの初期設定
//引数：ルート(設定ファイルの設置ディレクトリ)からの相対パス
//戻値：無し
//説明：ページの初期設定群
//備考：css読込で使用する「@import」は、Netscape 4.x及びWindows IE 4以前で無効
function init_set(path){
	//パスを設定(グローバル)
	load_path = path;
	
	//param.js
	document.write('<script language="JavaScript" src="'+load_path+'js/param.js"></script>'+"\n");
	
	//rollover
	load_rollover();
	
	//stylesheet
	set_stylefile (load_path+'css/');
}

function init_set2(path){
	//パスを設定(en用)
	load_path2 = path;
	
	//stylesheet(en用フォント設定cssファイル)
	set_stylefile2 (load_path2+'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に分岐

//レイアウト設定用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");
		
	//base_02.css読み込み（huisd、enで使用のcssファイル）
	document.write('@import url('+filepath+'base_02.css);'+"\n");
	
	document.write('-->'+"\n");
	document.write('</style>'+"\n");
}

//enフォント設定用cssファイルの読み込み	
function set_stylefile2(filepath) {
	document.write('<style type="text/css">'+"\n");
	document.write('<!--'+"\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");
}

//MenuDrop
var listener = {
	add: function(obj, event, funcname, capture){
		if (obj.addlistener)
			obj.addlistener(event, funcname, capture);
		else if (obj.attachEvent)
			obj.attachEvent("on" + event, funcname);
	},
	remove: function(obj, event, funcname, capture){
		if (obj.removelistener)
			obj.removelistener(event, funcname, capture);
		else if (obj.detachEvent)
			obj.detachEvent("on" + event, funcname);
	}
};

var menudrop = {

	/* 開くまでの待ち時間 */
	open_sleep: 10,
	/* 閉じるまでの待ち時間 */
	close_sleep: 30,
	timer: null,
	active_oid: null,
	// 開く
	open: function(target_id){
	// 開いてるの閉じる
		if (this.timer) {
			if (this.active_oid == target_id)
				clearTimeout(this.timer);
			else
				this._close();
		}
		this.active_oid = target_id;
		this.timer = setTimeout("menudrop._open();", this.open_sleep);
		listener.add(document.documentElement, "click", menudrop._close, true);
	},

	// 閉じる
	close: function(){
		if (this.timer)
			clearTimeout(this.timer);
		this.timer = setTimeout("menudrop._close();", this.close_sleep);
	},

	_open: function(){
		var obj = document.getElementById(this.active_oid);
		obj.style.visibility = "visible";
	},

	_close: function(){
		document.getElementById(menudrop.active_oid).style.visibility = "hidden";
		listener.remove(document.documentElement, "click", menudrop._close, true);
		clearTimeout(menudrop.timer);
		delete menudrop.timer;
	}

};


//■ロールオーバー設定
//引数：無し
//戻値：無し
//説明：ロールオーバーの設定
//備考：
function load_rollover(){
	check="no";
	ver=navigator.appVersion.indexOf("2.0",0);
	if(ver=="-1"){
	
	//通常のメニュー
		m01=new Image();m01.src = load_path+"image/m_about.gif";
		m01r=new Image();m01r.src = load_path+"image/m_about_r.gif";
		m01d=new Image();m01d.src = load_path+"image/m_about_d.gif";
		
		m02=new Image();m02.src = load_path+"image/m_admission.gif";
		m02r=new Image();m02r.src = load_path+"image/m_admission_r.gif";
		m02d=new Image();m02d.src = load_path+"image/m_admission_d.gif";
		
		m03=new Image();m03.src = load_path+"image/m_research.gif";
		m03r=new Image();m03r.src = load_path+"image/m_research_r.gif";
		m03d=new Image();m03d.src = load_path+"image/m_research_d.gif";
		
		m04=new Image();m04.src = load_path+"image/m_relations.gif";
		m04r=new Image();m04r.src = load_path+"image/m_relations_r.gif";
		m04d=new Image();m04d.src = load_path+"image/m_relations_d.gif";
		
	//メイン画面のメニュー
		mm01=new Image();mm01.src = load_path+"image/img_main_menu01.gif";
		mm01r=new Image();mm01r.src = load_path+"image/img_main_menu01_r.gif";
		
		mm02=new Image();mm02.src = load_path+"image/img_main_menu02.gif";
		mm02r=new Image();mm02r.src = load_path+"image/img_main_menu02_r.gif";
		
		mm03=new Image();mm03.src = load_path+"image/img_main_menu03.gif";
		mm03r=new Image();mm03r.src = load_path+"image/img_main_menu03_r.gif";
		
		mm04=new Image();mm04.src = load_path+"image/img_main_menu04.gif";
		mm04r=new Image();mm04r.src = load_path+"image/img_main_menu04_r.gif";
		
		mm05=new Image();mm05.src = load_path+"image/img_main_menu05.gif";
		mm05r=new Image();mm05r.src = load_path+"image/img_main_menu05_r.gif";
		
	//訪問者indexのメニュー
		mmm01=new Image();mmm01.src = load_path+"image/img_hmns_menu01.gif";
		mmm01r=new Image();mmm01r.src = load_path+"image/img_main_menu01_r.gif";
		mmm01d=new Image();mmm01d.src = load_path+"image/img_hmns_menu01_d.gif";
		
		mmm02=new Image();mmm02.src = load_path+"image/img_hmns_menu02.gif";
		mmm02r=new Image();mmm02r.src = load_path+"image/img_main_menu02_r.gif";
		mmm02d=new Image();mmm02d.src = load_path+"image/img_hmns_menu02_d.gif";
		
		mmm03=new Image();mmm03.src = load_path+"image/img_hmns_menu03.gif";
		mmm03r=new Image();mmm03r.src = load_path+"image/img_main_menu03_r.gif";
		mmm03d=new Image();mmm03d.src = load_path+"image/img_hmns_menu03_d.gif";
		
		mmm04=new Image();mmm04.src = load_path+"image/img_hmns_menu04.gif";
		mmm04r=new Image();mmm04r.src = load_path+"image/img_main_menu04_r.gif";
		mmm04d=new Image();mmm04d.src = load_path+"image/img_hmns_menu04_d.gif";
		
		mmm05=new Image();mmm05.src = load_path+"image/img_hmns_menu05.gif";
		mmm05r=new Image();mmm05r.src = load_path+"image/img_main_menu05_r.gif";
		mmm05d=new Image();mmm05d.src = load_path+"image/img_hmns_menu05_d.gif";
		
		
		check="ok";
	}
}
function chimg(n){
	if(check=="ok"){
		if(n=="a"){document.menu01.src=m01r.src;}
		if(n=="b"){document.menu02.src=m02r.src;}
		if(n=="c"){document.menu03.src=m03r.src;}
		if(n=="d"){document.menu04.src=m04r.src;}
		if(n=="e"){document.menu05.src=m05r.src;}
				
		if(n=="aa"){document.mmenu01.src=mm01r.src;}
		if(n=="bb"){document.mmenu02.src=mm02r.src;}
		if(n=="cc"){document.mmenu03.src=mm03r.src;}
		if(n=="dd"){document.mmenu04.src=mm04r.src;}
		if(n=="ee"){document.mmenu05.src=mm05r.src;}
		
		if(n=="aaa"){document.mmmenu01.src=mmm01r.src;}
		if(n=="bbb"){document.mmmenu02.src=mmm02r.src;}
		if(n=="ccc"){document.mmmenu03.src=mmm03r.src;}
		if(n=="ddd"){document.mmmenu04.src=mmm04r.src;}
		if(n=="eee"){document.mmmenu05.src=mmm05r.src;}
	}
}

function reimg(n){
	if(check=="ok"){
		if(n=="a"){document.menu01.src=m01.src;}
		if(n=="b"){document.menu02.src=m02.src;}
		if(n=="c"){document.menu03.src=m03.src;}
		if(n=="d"){document.menu04.src=m04.src;}
		if(n=="e"){document.menu05.src=m05.src;}
		
		if(n=="aa"){document.mmenu01.src=mm01.src;}
		if(n=="bb"){document.mmenu02.src=mm02.src;}
		if(n=="cc"){document.mmenu03.src=mm03.src;}
		if(n=="dd"){document.mmenu04.src=mm04.src;}
		if(n=="ee"){document.mmenu05.src=mm05.src;}
		
		if(n=="aaa"){document.mmmenu01.src=mmm01.src;}
		if(n=="bbb"){document.mmmenu02.src=mmm02.src;}
		if(n=="ccc"){document.mmmenu03.src=mmm03.src;}
		if(n=="ddd"){document.mmmenu04.src=mmm04.src;}
		if(n=="eee"){document.mmmenu05.src=mmm05.src;}
	}
}

function active(n){
	if(check=="ok"){
		if(n=="a"){document.menu01.src=m01d.src;}
		if(n=="b"){document.menu02.src=m02d.src;}
		if(n=="c"){document.menu03.src=m03d.src;}
		if(n=="d"){document.menu04.src=m04d.src;}
		if(n=="e"){document.menu05.src=m05d.src;}
		
		if(n=="aaa"){document.mmmenu01.src=mmm01d.src;}
		if(n=="bbb"){document.mmmenu02.src=mmm02d.src;}
		if(n=="ccc"){document.mmmenu03.src=mmm03d.src;}
		if(n=="ddd"){document.mmmenu04.src=mmm04d.src;}
		if(n=="eee"){document.mmmenu05.src=mmm05d.src;}
		
		
	}
}


//■クイックリンク
function ctgjump(selctg)
{
	n = selctg.selectedIndex;
	txt = selctg.options[n].text;
	
	if (txt == "　科学技術コミュニケーター養成ユニット（CoSTEP)"){
		window.open(selctg.options[n].value,"sub","directories=1,location=1,menubar=1,scrollbars=1,status=1,toolbar=1,resizable=1");
	}else if (txt == "　事務局"){
		window.open(selctg.options[n].value,"sub","directories=1,location=1,menubar=1,scrollbars=1,status=1,toolbar=1,resizable=1");
	}else{
		location.href = selctg.options[n].value;
	}
}

//■プルダウン用
	function show(layName){
		if(navigator.appName.charAt(0)=="M"){
		document.all(layName).style.visibility="visible";
		}
		if(navigator.appName.charAt(0)=="N"){
			if(navigator.appVersion.charAt(0)>=5){
			document.getElementById(layName).style.visibility="visible";
			}
			else{
			document.layers[layName].visibility="visible";
			}
		}
	}
	//script by Shinichi Tateyama as Interface Architects
	
	function hide(layName){
		if( navigator.appName.charAt(0)=="M"){
		document.all(layName).style.visibility="hidden";
		}
		if(navigator.appName.charAt(0)=="N"){
			if(navigator.appVersion.charAt(0)>=5){
			document.getElementById(layName).style.visibility="hidden";
			}
			else{
			document.layers[layName].visibility="hide";
			}
		}
	
	}



//■訪問者別indexメニュー
function print_hmns_menu(data){
	
	//受験生（高校生）の皆様へ
	if(data == 'koukou'){
		document.write('<a href="'+load_path+'hmns/koukou.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+'hmns/koukou.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 == 'ryugaku'){
		document.write('<a href="'+load_path+'hmns/ryugaku.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/ryugaku.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 == 'sostugyo'){
		document.write('<a href="'+load_path+'hmns/sostugyo.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/sostugyo.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 == 'zaigaku'){
		document.write('<a href="'+load_path+'hmns/zaigaku.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/zaigaku.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");
	}
}






//■TOPヘッダー
function print_header_top(){
	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td background="'+load_path+'image/header_bg.gif" align="left" valign="top">'+"\n");
	document.write('<!--------------------------------------------------->'+"\n");
	document.write('<table width="780" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="270" align="left" valign="top"><a href="./index.html"><img src="'+load_path2+'image/img_header.gif" width="270" height="75" border="0" alt="Hokkaido University"></a></td>'+"\n");
	document.write('<td width="510" align="right" valign="middle">'+"\n");
	document.write('<!-------------------------------------->'+"\n");
	document.write('<table border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td align="right" valign="middle">'+"\n");
	document.write('<table border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td align="right" valign="middle"><a href="'+load_path+'"><img src="'+load_path2+'image/img_japanese.gif" width="69" height="20" border="0" alt="JAPANESE"></a><a href="'+load_path+'cn/"><img src="'+load_path2+'image/img_chinese.gif" width="69" height="20" border="0" alt="CHINESE"></a></td>'+"\n");
	document.write('<td align="right" valign="middle"><a href="http://www.google.com/" target="_blank"><img src="'+load_path2+'image/poweredby_google.gif" width="56" height="20" border="0" alt="Powered by Google"></a></td>'+"\n");
	document.write('<td align="center" valign="middle">'+"\n");
	document.write('<form id="searchbox_001695135354520438532:zdxllbauflg" action="http://www.google.com/search"><input type="text" name="q" size="20" maxlength="255" value="">'+"\n");
	document.write('<input type="hidden" name="cx" value="001695135354520438532:zdxllbauflg" /><input type="hidden" name="cof" value="FORID:0" /></td>'+"\n");
	document.write('<td align="center" valign="middle"><input type="image" src="'+load_path2+'image/bt_search.gif" width="60" height="20" border="0" align="right" alt="SEARCH"></form></td>'+"\n");
	document.write('<td style="text-align:right;font-size:12px">&nbsp;<a href="/en/search/index.html">Database Link</a></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 align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="1" height="2"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td id="line01" align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="1" height="2"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td  align="right" valign="top"><form name="kform"><select name="kselect" onchange="ctgjump(this)" style="font-size:8pt;width:520px">'+"\n");
	document.write('<option value="#" selected>Link to Graduate Schools & Faculties / Institutes /  Centers / Other Facilities'+"</option>\n");
	document.write('<optgroup label="Graduate Schools & Faculties">'+"</optgroup>\n");
	document.write('<option value="http://www.let.hokudai.ac.jp/en/">&nbsp;Graduate School of Letters / Faculty of Letters'+"</option>\n");
	document.write('<option value="http://www.juris.hokudai.ac.jp/english/">&nbsp;Graduate School of Law / School of Law'+"</option>\n");
	document.write('<option value="http://www.econ.hokudai.ac.jp/en/">&nbsp;Graduate School of Economics and Business Administration / School of Economics and Business Administration'+"</option>\n");
	document.write('<option value="http://www.med.hokudai.ac.jp/index-e.html">&nbsp;Graduate School of Medicine / School of Medicine'+"</option>\n");
	document.write('<option value="http://www.den.hokudai.ac.jp/contents/english/index.html">&nbsp;Graduate School of Dental Medicine / School of Dental Medicine'+"</option>\n");
	document.write('<option value="http://www.vetmed.hokudai.ac.jp/index-e.html">&nbsp;Graduate School of Veterinary Medicine / School of Veterinary Medicine'+"</option>\n");
	document.write('<option value="http://www.ist.hokudai.ac.jp/eng/index.php">&nbsp;Graduate School of Information Science and Technology'+"</option>\n");
	document.write('<option value="http://www2.fish.hokudai.ac.jp/modules/top_en/">&nbsp;Graduate School of Fisheries Sciences / Faculty of Fisheries Sciences / School of Fisheries Sciences'+"</option>\n");
	document.write('<option value="http://www.ees.hokudai.ac.jp/en_index.html">&nbsp;Graduate School of Environmental Science / Faculty of Environmental Earth Science'+"</option>\n");
	document.write('<option value="http://www.sci.hokudai.ac.jp/english/index.html">&nbsp;Graduate School of Science / Faculty of Science / School of Science'+"</option>\n");
	document.write('<option value="http://www.pharm.hokudai.ac.jp/eng/english01.html">&nbsp;Faculty of Pharmaceutical Sciences / School of Pharmaceutical Sciences and Pharmacy'+"</option>\n");
	document.write('<option value="http://www.agr.hokudai.ac.jp/">&nbsp;Graduate School of Agriculture / Research Faculty of Agriculture / School of Agriculture'+"</option>\n");
	document.write('<option value="http://www.lfsci.hokudai.ac.jp/graduate-school/">&nbsp;Graduate School of Life Science'+"</option>\n");
	document.write('<option value="http://altair.sci.hokudai.ac.jp/advlfsci/en/">&nbsp;Faculty of Advanced Life Science'+"</option>\n");
	document.write('<option value="http://www.edu.hokudai.ac.jp/index_e.html">&nbsp;Graduate School of Education / Faculty of Education / School of Education'+"</option>\n");
	document.write('<option value="http://www.imc.hokudai.ac.jp/en/">&nbsp;Graduate School of International Media, Communication, and Tourism Studies / Research Faculty of Media and Communication'+"</option>\n");
	document.write('<option value="http://www.hs.hokudai.ac.jp/e/index.cgi">&nbsp;Graduate School of Health Sciences / Faculty of Health Sciences'+"</option>\n");
	document.write('<option value="http://www.eng.hokudai.ac.jp/graduate/english/">&nbsp;Graduate School of Engineering / Faculty of Engineering / School of Engineering'+"</option>\n");
	document.write('<option value="http://www.cse.hokudai.ac.jp/english/index.html">&nbsp;Graduate School of Chemical Sciences and Engineering'+"</option>\n");
	document.write('<option value="http://www.hops.hokudai.ac.jp/english/index.php">&nbsp;Graduate School of Public Policy / Faculty of Public Policy'+"</option>\n");

	document.write('<optgroup label="Institutes and Research Centers">'+"</optgroup>\n");
	document.write('<option value="http://www.lowtem.hokudai.ac.jp/english/">&nbsp;Institute of Low Temperature Science'+"</option>\n");
	document.write('<option value="http://www.es.hokudai.ac.jp/english/">&nbsp;Research Institute for Electronic Science'+"</option>\n");
	document.write('<option value="http://www.igm.hokudai.ac.jp/english/index.html">&nbsp;Institute for Genetic Medicine'+"</option>\n");
	document.write('<option value="http://www.cat.hokudai.ac.jp/index.eng.html">&nbsp;Catalysis Research Center'+"</option>\n");
	document.write('<option value="http://src-h.slav.hokudai.ac.jp/index-e.html">&nbsp;Slavic Research Center'+"</option>\n");
	document.write('<option value="http://www.iic.hokudai.ac.jp/">&nbsp;Information Initiative Center'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/radiois/">&nbsp;Central Institute of Isotope Science'+"</option>\n");
	document.write('<option value="http://www.museum.hokudai.ac.jp/english/index.html">&nbsp;The Hokkaido University Museum'+"</option>\n");
	document.write('<option value="http://www.rciqe.hokudai.ac.jp/en/index.html">&nbsp;Research Center for Integrated Quantum Electronics'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/fsc/">&nbsp;Field Science Center for Northern Biosphere'+"</option>\n");
	document.write('<option value="http://www.meme.hokudai.ac.jp/index-e.html">&nbsp;Meme Media Laboratory'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/recbs/">&nbsp;Research and Education Center for Brain Science'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/czc/index-e.html">&nbsp;Research Center for Zoonosis Control'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/bunsyo/index.html">&nbsp;Hokkaido University Archives'+"</option>\n");
	document.write('<option value="http://www.cats.hokudai.ac.jp/">&nbsp;Center for Advanced Tourism Studies'+"</option>\n");
	document.write('<option value="http://www.imc.hokudai.ac.jp/lang/">&nbsp;Center for Language Learning'+"</option>\n");
	document.write('<option value="http://www.cais.hokudai.ac.jp/en/index.html">&nbsp;Center for Ainu & Indigenous Studies'+"</option>\n");
	document.write('<option value="http://lynx.let.hokudai.ac.jp/cerss/english/index.html">&nbsp;Center for Experimental Research in Social Sciences'+"</option>\n");
	document.write('<option value="http://www.juris.hokudai.ac.jp/riilp/index_e.html">&nbsp;Research Institute for Information Law & Policy'+"</option>\n");
	document.write('<option value="http://www.eng.hokudai.ac.jp/nanobio/eg/">&nbsp;Research Center for Environmental Nano and Bio Engineering'+"</option>\n");
	document.write('<option value="http://www.math.sci.hokudai.ac.jp/center/en/">&nbsp;Research Center for Integrative Mathematics'+"</option>\n");
	document.write('<option value="http://www.census.hokudai.ac.jp/">&nbsp;Center for Sustainability Science'+"</option>\n");
	document.write('<option value="http://www.topo.hokudai.ac.jp/en/index.html">&nbsp;Center of Education and Research for Topological Science and Technology'+"</option>\n");
	document.write('<option value="http://www.cehs.hokudai.ac.jp/en/">&nbsp;Center for Environmental and Health Sciences'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/hokekan/index.html">&nbsp;Health Care Center'+"</option>\n");

	document.write('<optgroup label="Other Facilities">'+"</optgroup>\n");
	document.write('<option value="http://www.lib.hokudai.ac.jp/index.php?ml_lang=en">&nbsp;Library'+"</option>\n");
	document.write('<option value="http://www.mcip.hokudai.ac.jp/eng/">&nbsp;Center for Innovation and Business Promotion'+"</option>\n");
	document.write('<option value="http://www.cris.hokudai.ac.jp/cris/en/">&nbsp;Creative Research Institution (CRIS)'+"</option>\n");
	document.write('<option value="http://educate.academic.hokudai.ac.jp/center/index.asp">&nbsp;Institute for the Advancement of Higher Education'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/bureau/nyu/english/en/index.html">&nbsp;Admission Center'+"</option>\n");
	document.write('<option value="http://www.isc.hokudai.ac.jp/www_ISC/cms/cgi-bin/index.pl">&nbsp;International Student Center'+"</option>\n");
	document.write('<option value="http://costep.hucc.hokudai.ac.jp/costep/about/english/suzuki.html">&nbsp;Communicators in Science and Technology Education Program (CoSTEP)'+"</option>\n");
	document.write('<option value="http://www2.synfoster.hokudai.ac.jp/cgi-bin/index.pl?page=index&view_category_lang=1">&nbsp;Front Office for Resource Education and Development'+"</option>\n");
	document.write('<option value="http://www.cris.hokudai.ac.jp/l-station/en/index.html">&nbsp;Leader Development Station'+"</option>\n");
	document.write('<option value="http://www.hucc.hokudai.ac.jp/~q16697/maibun/index.html">&nbsp;Archacological Research Center on the Campus'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/en/relations/office.html">&nbsp;Office of International Affairs'+"</option>\n");
	document.write('<option value="http://www.hokudai.ac.jp/en/about/tokyo_office.html">&nbsp;Tokyo Office'+"</option>\n");
	document.write('</select></form>'+"\n");
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('<!-------------------------------------->'+"\n");
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('<!--------------------------------------------------->'+"\n");
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");

}

//■2nd 3rdヘッダー
function print_header_2nd(){

	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td background="'+load_path2+'image/2nd_header_bg.gif" width="100%" align="left" valign="top">'+"\n");
	document.write('<!--------------------------------------------------------------->'+"\n");
	document.write('<table width="790" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="210" align="left" valign="top"><a href="'+load_path2+'index.html"><img src="'+load_path2+'image/2nd_img_header.gif" width="210" height="60" border="0" alt="Hokkaido University"></a></td>'+"\n");
	document.write('<td width="580" align="right" valign="middle">'+"\n");
	document.write('<!-------------------------------------->'+"\n");
	document.write('<table border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td align="center" valign="middle"><a href="'+load_path2+'index.html"><img src="'+load_path2+'image/2nd_img_home.gif" width="60" height="20" border="0" alt="HOME"></a></td>'+"\n");
	document.write('<td align="center" valign="middle"><a href="'+load_path+'"><img src="'+load_path2+'image/img_japanese.gif" width="69" height="20" border="0" alt="JAPANESE"></a><a href="'+load_path+'cn/"><img src="'+load_path2+'image/img_chinese.gif" width="69" height="20" border="0" alt="CHINESE"></a></td>'+"\n");
	document.write('<td align="right" valign="middle"><a href="http://www.google.com/" target="_blank"><img src="'+load_path2+'image/poweredby_google.gif" width="56" height="20" border="0" alt="Powered by Google"></a></td>'+"\n");
	document.write('<td align="center" valign="middle">'+"\n");
	document.write('<form id="searchbox_001695135354520438532:zdxllbauflg" action="http://www.google.com/search"><input type="text" name="q" size="20" maxlength="255" value="">'+"\n");
	document.write('<input type="hidden" name="cx" value="001695135354520438532:zdxllbauflg" /><input type="hidden" name="cof" value="FORID:0" /></td>'+"\n");
	document.write('<td align="center" valign="middle"><input type="image" src="'+load_path2+'image/bt_search.gif" width="60" height="20" border="0" align="right" alt="SEARCH"></form></td>'+"\n");
	document.write('<td style="text-align:right;font-size:12px">&nbsp;<a href="/en/search/index.html">Database Link</a></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('<!-------------------------------------->'+"\n");
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('<!--------------------------------------------------------------->'+"\n");
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");

	}


//■2nd 3rdメニュー(分岐)
//引数：data＝アクティブ状態にするコンテンツ名、gazou＝2nd用メイン画像 or noimageで3rdに切替、gazoualt＝2ndメイン画像のalt or 空白で3rd
//戻値：無し
//説明：メニューの表示
//備考：アクティブ状態が有るメニューの場合はこちらを使用する
function print_menu_2nd(data,gazou){
	
	
	document.write('<!----------------pulldown_menu:start---------------->'+"\n");
	document.write('<!------------menu01:start-------------->'+"\n");
	document.write('<div id="mn1" style="position:absolute;width:155px;height:245px;left:15px;top:0px;z-index:2;visibility:hidden" onMouseOver="menudrop.open(\'mn1\');" onMouseOut="menudrop.close(\'mn1\');">'+"\n");
	document.write('<a href="javascript:void(0);"><img name="menu01" src="'+load_path2+'image/m_about_r.gif" width="155" height="45" border="0" alt="About Hokkaido University"></a><br>'+"\n");
	document.write('<table id="submenu" width="155" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'about/message.html" class="submenu">Message from the President</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" 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/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td align="left" valign="middle"><font class="f10"><a href="'+load_path2+'about/board_of_executives.html" class="submenu">Board of Executives and Administrative Council</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" 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/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td align="left" valign="middle"><font class="f10"><a href="'+load_path2+'about/basic_philosophies.html" class="submenu">Basic Philosophies and Long Term Goals</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" 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/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td align="left" valign="middle"><font class="f10"><a href="'+load_path2+'about/brief_history.html" class="submenu">Brief History</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" 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/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td align="left" valign="middle"><font class="f10"><a href="'+load_path2+'about/introduction_index.html" class="submenu">Graduate Schools, Faculties, Institutes, Centers and Other Facilities</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" 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/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td align="left" valign="middle"><font class="f10"><a href="http://www.lib.hokudai.ac.jp/index.php?ml_lang=en" class="submenu">Library</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" 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/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td align="left" valign="middle"><font class="f10"><a href="http://www.museum.hokudai.ac.jp/english/index.html" class="submenu">Museum</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" 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/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td align="left" valign="middle"><font class="f10"><a href="'+load_path2+'pickup/accesstocampus.html" class="submenu">Access to Campus</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('</table>'+"\n");
	document.write('</div>'+"\n");
	document.write('<!------------menu01:end---------------->'+"\n");
	document.write('<!------------menu02:start-------------->'+"\n");
	document.write('<div id="mn2" style="position:absolute;width:155px;height:100px;left:170px;top:0px;z-index:2;visibility:hidden" onMouseOver="menudrop.open(\'mn2\');" onMouseOut="menudrop.close(\'mn2\');">'+"\n");
	document.write('<a href="javascript:void(0);"><img name="menu02" src="'+load_path2+'image/m_admission_r.gif" width="155" height="45" border="0" alt="Admission & Campus Life"></a><br>'+"\n");
	document.write('<table id="submenu" width="155" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'admission/admission.html" class="submenu">Admission</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><span style="color:#cfcfcf;">Campus Life (Under Construction)</span></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'admission/rules/rules.html" class="submenu">Rules & Regulations for Students (Campus Access Only)</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'webcamera/camera320.html" class="submenu">Web Camera</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('</table>'+"\n");
	document.write('</div>'+"\n");
	document.write('<!------------menu02:end---------------->'+"\n");
	document.write('<!------------menu03:start-------------->'+"\n");
	document.write('<div id="mn3" style="position:absolute;width:155px;height:120px;left:325px;top:0px;z-index:2;visibility:hidden" onMouseOver="menudrop.open(\'mn3\');" onMouseOut="menudrop.close(\'mn3\');">'+"\n");
	document.write('<a href="javascript:void(0);"><img name="menu03" src="'+load_path2+'image/m_research_r.gif" width="155" height="45" border="0" alt="Research"></a><br>'+"\n");
	document.write('<table id="submenu" width="155" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'research/research_activities.html" class="submenu">Research Activities</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="http://hecate.general.hokudai.ac.jp/welcome/top-page-eng.html" class="submenu">Researchers\' Database</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="http://eprints.lib.hokudai.ac.jp/dspace/index.jsp?locale=en" class="submenu">Collection of Scholarly and Academic Papers (HUSCAP)</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="http://www.mcip.hokudai.ac.jp/eng/" class="submenu">Management Center for Intellctual Property & Innovation</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('</table>'+"\n");
	document.write('</div>'+"\n");
	document.write('<!------------menu03:end---------------->'+"\n");
	document.write('<!------------menu04:start-------------->'+"\n");
	document.write('<div id="mn4" style="position:absolute;width:155px;height:95px;left:480px;top:0px;z-index:2;visibility:hidden" onMouseOver="menudrop.open(\'mn4\');" onMouseOut="menudrop.close(\'mn4\');">'+"\n");
	document.write('<a href="javascript:void(0);"><img name="menu04" src="'+load_path2+'image/m_relations_r.gif" width="155" height="45" border="0" alt="International Relations"></a><br>'+"\n");
	document.write('<table id="submenu" width="155" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'relations/office.html" class="submenu">Office of International Affairs</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'relations/internationalization.html" class="submenu">Internationalization Strategies</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="'+load_path2+'relations/partner_institutions.html" class="submenu">Partner Institutions</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="http://www.isc.hokudai.ac.jp/www_ISC/index-e.cgi" class="submenu">International  Student Center</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="http://www.sustain.hokudai.ac.jp/sw/" class="submenu">Sustainability Weeks</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<!------>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="20" align="left" valign="top"><img src="'+load_path+'image/m_icon01.gif" width="20" height="24"></td>'+"\n");
	document.write('<td width="135" align="left" valign="middle"><font class="f10"><a href="http://www.hokudai.cn/" class="submenu">Beijing Office</a></font></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path+'image/m_line01.gif" width="155" height="1"></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<!------>'+"\n");
	document.write('</table>'+"\n");
	document.write('</div>'+"\n");
	document.write('<!------------menu04:end---------------->'+"\n");
	document.write('<!----------------pulldown_menu:end------------------>'+"\n");
	
	
	
	
	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_path2+'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_path2+'image/m_left.gif" width="15" height="45"></td>'+"\n");
		//About Hokkaido University
		if(data == 'about'){
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn1\')" onmouseout="menudrop.close(\'mn1\')"><img name="menu01" src="'+load_path2+'image/m_about_d.gif" width="155" height="45" border="0" alt="About Hokkaido University"></a></td>'+"\n");
		}else{
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn1\')" onmouseout="menudrop.close(\'mn1\')"><img name="menu01" src="'+load_path2+'image/m_about.gif" width="155" height="45" border="0" alt="About Hokkaido University"></a></td>'+"\n");
		}
		
		//Admission & Campus Life
		if(data == 'admission'){
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn2\')" onmouseout="menudrop.close(\'mn2\')"><img name="menu02" src="'+load_path2+'image/m_admission_d.gif" width="155" height="45" border="0" alt="Admission & Campus Life"></a></td>'+"\n");
		}else{
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn2\')" onmouseout="menudrop.close(\'mn2\')"><img name="menu02" src="'+load_path2+'image/m_admission.gif" width="155" height="45" border="0" alt="Admission & Campus Life"></a></td>'+"\n");
		}
		
		//Research
		if(data == 'research'){
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn3\')" onmouseout="menudrop.close(\'mn3\')"><img name="menu03" src="'+load_path2+'image/m_research_d.gif" width="155" height="45" border="0" alt="Research"></a></td>'+"\n");
		}else{
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn3\')" onmouseout="menudrop.close(\'mn3\')"><img name="menu03" src="'+load_path2+'image/m_research.gif" width="155" height="45" border="0" alt="Research"></a></td>'+"\n");
		}
		
		//International Relations
		if(data == 'relations' || data == 'seoul' ){
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn4\')" onmouseout="menudrop.close(\'mn4\')"><img name="menu04" src="'+load_path2+'image/m_relations_d.gif" width="155" height="45" border="0" alt="International Relations"></a></td>'+"\n");
		}else{
			document.write('<td width="155" align="left" valign="top"><a href="javascript:void(0);" onmouseover="menudrop.open(\'mn4\')" onmouseout="menudrop.close(\'mn4\')"><img name="menu04" src="'+load_path2+'image/m_relations.gif" width="155" height="45" border="0" alt="International Relations"></a></td>'+"\n");
		}
		
		document.write('<td width="465" align="left" valign="top"><img src="'+load_path2+'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");
	
	
	
	//学内情報／新着情報／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");
	
	//↑ここまで訪問者別
	//↓ここからフッター・バナーコンテンツ 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_path2+'image/accesstocampus_title.gif" width="790" height="60" alt="Access to campus"><br>'+"\n");
		
	}else if(gazou == 'usefullinks'){
		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_path2+'image/usefullinks_title.gif" width="790" height="60" alt="Useful links"><br>'+"\n");
		
	}else if(gazou == 'publicrelations'){
		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_path2+'image/publicrelations_title.gif" width="790" height="60" alt="Publications"><br>'+"\n");
		
	}else if(gazou == 'contactus'){
		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_path2+'image/contactus_title.gif" width="790" height="60" alt="Contact us"><br>'+"\n");
		
	// added 2009.2.23
	}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_path2+'image/sitepolicy_title.gif" width="790" height="60" alt="Site Policy"><br>'+"\n");
	// added end

	}else if(gazou == 'newstopic'){
		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_path2+'image/newstopics_title.gif" width="790" height="60" alt="News"><br>'+"\n");

	}else if(gazou == 'newsarchive'){
		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_path2+'image/newsarchive_title.gif" width="790" height="60" alt="News"><br>'+"\n");
	
	//↑ここまでフッター・バナーコンテンツ etc
	
	//2ndのコンテンツ分岐
//About Hokkaido University
	}else if(gazou == 'about'){
	
		document.write('<td style="background-image: url('+load_path2+'image/2nd_main_about.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path2+'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");
	
	//Admission & Campus Life
	}else if(gazou == 'admission'){
	
		document.write('<td style="background-image: url('+load_path2+'image/2nd_main_admission.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path2+'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");
	
	//Research
	}else if(gazou == 'research'){
	
		document.write('<td style="background-image: url('+load_path2+'image/2nd_main_research.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path2+'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");
		
	//International Relations
	}else if(gazou == 'relations'){
	
		document.write('<td style="background-image: url('+load_path2+'image/2nd_main_relations.jpg);background-repeat: repeat-x;" width="100%" align="left" valign="top">'+"\n");
		document.write('<img src="'+load_path2+'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 == 'about'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path2+'image/3rd_menu_title_about.gif" width="210" height="135" alt="About Hokkaido University"><br>'+"\n");
			
		}else if(ctitle == 'admission'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path2+'image/3rd_menu_title_admission.gif" width="210" height="115" alt="Admission & Campus Life"><br>'+"\n");
			
		}else if(ctitle == 'research'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path2+'image/3rd_menu_title_research.gif" width="210" height="115" alt="Research"><br>'+"\n");
			
		}else if(ctitle == 'seoul'){
			
			document.write('<td align="center" valign="top"><img src="'+load_path2+'image/3rd_menu_title_seoul.gif" width="210" height="96" alt="Joint Symposium with Seoul National University"><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");
	
	}
	
	//About Hokkaido University：start--------------------------------------------------
	
	if(data == 'about'){
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'about/message.html"  class="m2" >Message from the President</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'about/board_of_executives.html" class="m2">Board of Executives and Administrative Council</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'about/basic_philosophies.html" class="m2">Basic Philosophies and Long Term Goals</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'about/brief_history.html" class="m2">Brief History</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'about/introduction_index.html" class="m2">Graduate Schools, Faculties, Institutes, Centers and Other Facilities</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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/index.php?ml_lang=en" class="m2">Library</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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/english/index.html" class="m2">Museum</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'pickup/accesstocampus.html" class="m2">Access to Campus</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//About Hokkaido University：end----------------------------------------------------------
	
	//Admission & Campus Life：start--------------------------------------------------
	
	if(data == 'admission'){
		
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'admission/admission.html" class="m2">Admission</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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"><span style="color:#9cb79b;">Campus Life (Under Construction)</span></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'admission/rules/rules.html" class="m2">Rules & Regulations for Students (Campus Access Only)</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//Admission & Campus Life：end----------------------------------------------------
	
	//Research：start--------------------------------------------------
	
	if(data == 'research'){
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'research/research_activities.html" class="m2">Research Activities</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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-eng.html" class="m2">Researchers\' Database</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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://eprints.lib.hokudai.ac.jp/dspace/index.jsp?locale=en" class="m2">Collection of Scholarly and Academic Papers (HUSCAP)</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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/eng/" class="m2">Management Center for Intellctual Property & Innovation</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//Research：end----------------------------------------------------
	
	//International Relations：start--------------------------------------------------
	
	if(data == 'relations'){
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'relations/office.html" class="m2">Office of International Affairs</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'relations/internationalization.html" class="m2">Internationalization Strategies</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'relations/partner_institutions.html" class="m2">Partner Institutions</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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/index-e.cgi" class="m2">International Student Center</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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.sustain.hokudai.ac.jp/sw/" class="m2">Sustainability Weeks</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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.hokudai.cn/" class="m2">Beijing Office</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//International Relations：end----------------------------------------------------
	
	//Seoul：start--------------------------------------------------
	
	if(data == 'seoul'){
		document.write('<!------>'+"\n");
		document.write('<td align="left" valign="middle" colspan="4" background="'+load_path2+'image/3rd_menu_title_bg.gif" height="70">'+"\n");
		document.write('<font class="f12" style="margin:6px 0 0 35px;height:64px;display:block;"><a href="'+load_path2+'relations/internationalization/seoul/index.html"  class="m2" >Top</a></font></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<!------>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'relations/internationalization/seoul/12.html"  class="m2" >The 12th Joint Symposium</a><br>(Nov 19-21, 2009)</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'relations/internationalization/seoul/11.html"  class="m2" >The 11th Joint Symposium</a><br>(Nov 6-8, 2008)</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'relations/internationalization/seoul/10.html"  class="m2" >The 10th Joint Symposium</a><br>(Jan 24-26, 2008)</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'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_path2+'relations/internationalization/seoul/09.html"  class="m2" >The 9th Joint Symposium</a><br>(Jan 24-26, 2007)</font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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_path2+'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_path2+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'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/index.html"  class="m2" >Joint Symposium<br>(in Japanese)</a></font></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="1" height="1"></td>'+"\n");
		document.write('<td colspan="2" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="1" height="15"></td>'+"\n");
		document.write('<td align="left" valign="top"><img src="'+load_path2+'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_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('<td width="20" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="20" height="1"></td>'+"\n");
		document.write('<td width="130" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="130" height="1"></td>'+"\n");
		document.write('<td width="15" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="15" height="1"></td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	}
	
	//Seoul Hokkaido University：end----------------------------------------------------------
	
	if(pageno == 'third'){
	
		document.write('</td>'+"\n");
		document.write('</tr>'+"\n");
		document.write('</table>'+"\n");
	
	}
	
	
}








//■2nd,3rdフッター
function print_footer_2nd(){

	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td background="'+load_path2+'image/img_ftbg.gif" width="100%" align="left" valign="top">'+"\n");
	document.write('<table width="790" border="0" cellspacing="0" cellpadding="0">'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="110" align="left" valign="top"><a href="'+load_path2+'pickup/usefullinks.html"><img src="'+load_path2+'image/subm_usefullinks.gif" width="110" height="20" border="0" alt="Useful Links"></a></td>'+"\n");
	document.write('<td width="110" align="left" valign="top"><a href="'+load_path2+'pickup/accesstocampus.html"><img src="'+load_path2+'image/subm_accesstocampus.gif" width="110" height="20" border="0" alt="Access to Campuss"></a></td>'+"\n");
	document.write('<td width="110" align="left" valign="top"><a href="'+load_path2+'pickup/publicrelations.html"><img src="'+load_path2+'image/subm_publicrelations.gif" width="110" height="20" border="0" alt="Publications"></a></td>'+"\n");
	document.write('<td width="110" align="left" valign="top"><a href="'+load_path2+'pickup/contactus.html"><img src="'+load_path2+'image/subm_contactus.gif" width="110" height="20" border="0" alt="Contact Us"></a></td>'+"\n");
	// added 2009.2.23
	document.write('<td width="110" align="left" valign="top"><a href="'+load_path2+'pickup/sitepolicy.html"><img src="'+load_path2+'image/subm_sitepolicy.gif" width="110" height="20" border="0" alt="Site Policy"></a></td>'+"\n");
	document.write('<td width="60" align="left" valign="top"><img src="'+load_path2+'image/space.gif" width="60" height="1"></td>'+"\n");
	// added end
	document.write('<td width="90" align="left" valign="top"><a href="javascript:history.back();"><img src="'+load_path2+'image/subm_pgback.gif" width="90" height="20" border="0" alt="BACK"></a></td>'+"\n");
	document.write('<td width="90" align="left" valign="top"><a href="#pgtop"><img src="'+load_path2+'image/subm_pgtop.gif" width="90" height="20" border="0" alt="TOP"></a></td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('<tr>'+"\n");
	document.write('<td width="440" colspan="4" align="left" valign="middle"><font class="copy"><font color="#ffffff">'+"\n");
	document.write('<img src="'+load_path2+'image/space.gif" width="20" height="1">'+"\n");
	document.write('Division of International Relations ');
	document.write('&nbsp;&nbsp;&nbsp;');
	document.write(' E-mail: <a href="mailto:info\@oia.hokudai.ac.jp" style="color:#fff">info\@oia.hokudai.ac.jp</a>'+"\n");
	document.write('</font></font></td>'+"\n");
	// edited 2009.2.23
	document.write('<td colspan="4" width="350" align="right" valign="top"><img src="'+load_path2+'image/img_copy.gif" width="300" height="30" alt="COPYRIGHT HOKKAIDO UNIVERSITY. ALL RIGHTS RESERVED."></td>'+"\n");
	// edited end
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");
	document.write('</td>'+"\n");
	document.write('</tr>'+"\n");
	document.write('</table>'+"\n");

}

