<!--
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
// -->

<!--
function contact() {
	document.write("<a href='mailto:portb@hotmail.co.jp'>Contact Us</a>")
}
// -->

<!--
function setContFrame(){
  	var loc = parent.location.search;
	loc = loc.substring(1);
//	location = loc;
	if(loc != ""){
		self.location=loc;
	}else{
		self.location="news.html";
	}
}
//-->

<!--
function setMenuAndTitleFrame(){
	parent.menuFrame.location = "menu.html";
	parent.titleFrame.location = "page_title.html";
}
//-->

<!--
function setArchMenuAndTitle(){
	parent.menuFrame.location = "../arch_menu.html";
	parent.titleFrame.location = "../arch_title.html";
}
//-->

<!--
function setNewsMenuAndTitle(){
	parent.menuFrame.location = "news_menu.html";
	parent.titleFrame.location = "page_title.html";
}
//-->

<!--
function setNewsMenuOnly(){
	parent.menuFrame.location = "news_menu.html";
}
//-->

<!--
function setProfMenuAndTitle(){
	parent.menuFrame.location = "prof_menu.html";
	parent.titleFrame.location = "page_title.html";
}
//-->

<!--
function setSchMenuAndTitle(){
	parent.menuFrame.location = "sch_menu.html";
	parent.titleFrame.location = "page_title.html";
}
//-->

<!--
function setPageTitle(){
  	var	loc = parent.mainFrame.location.pathname;
	if(loc != ""){
		loc = loc.substring(4);	//	remove eng/
		var	len = loc.length;
		loc = loc.substring(7, len - 4);
		if (loc=="news_2004." || loc=="news_2005.")
			loc = "news.";
		else if (loc=="nie_flyer." || loc=="nie_intro.")
			loc = "schedule.";
			
		loc = "e_page_title_" + loc + "gif";
	}else{
		loc = "no_img.gif";
	}
	
//	document.write("../img/" + loc);	
	document.write("<img src='../img/" + loc + "'>");
}
//-->

<!--
function toTop() {
	var	loc = parent.mainFrame.location.pathname;
	loc = loc + "#top";
	parent.mainFrame.location = loc;
}
//-->