

<!--
function ChangeBtnImage_Over(btnName){
 
 imageSrc = document.images[btnName].src;
 left_str = imageSrc.substr(0,imageSrc.lastIndexOf(".", imageSrc.length));
 right_str = imageSrc.substring(imageSrc.lastIndexOf(".", imageSrc.length), imageSrc.length);
 if (left_str.substr(left_str.length - 3, left_str.length) != "_on"){
 	changeSrc = left_str + "_on" + right_str;
 		document.images[btnName].src = changeSrc;
 }
}

function ChangeBtnImage_Out(btnName){
 imageSrc = document.images[btnName].src;
 left_str = imageSrc.substr(0,imageSrc.lastIndexOf(".", imageSrc.length) - 3);
 right_str = imageSrc.substring(imageSrc.lastIndexOf(".", imageSrc.length), imageSrc.length);
 
 changeSrc = left_str + right_str;
 document.images[btnName].src = changeSrc;
}
function goHome(){
 top.frames.document.location.href = '../index.html';
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

<!--
mac=(navigator.appVersion.indexOf('Mac')!=-1)?true:false;
ie=(navigator.appName.charAt(0) == "M")?true:false;

document.write("<STYLE TYPE='text/css'><!--")
if(mac){
	//FOR MACINTOSH IE NS
	document.write(".j14{font-size:14px}")
	document.write(".j12{font-size:12px}")
	document.write(".j10{font-size:10px}")
}
else{
	if(ie){
	//FOR WINDOWS IE
	document.write(".j14{font-size:14px; line-height:20px}")
	document.write(".j12{font-size:12px; line-height:18px}")
	document.write(".j10{font-size:10px; line-height:16px}")
	}
	else{
	//FOR WINDOWS NETSCAPE
	document.write(".j14{font-size:14px; line-height:20px}")	
	document.write(".j12{font-size:12px; line-height:18px}")
	document.write(".j10{font-size:10px; line-height:16px}")
	}
}
document.write("--></STYLE>");
//-->


<!--
 var openedMenu = null;
 var submenuTimer;
 
 //画像メニューにポインタがきた時
 function menuOvr(id){
 
 	// 開いているメニューと違うメニューであれば隠す。
 	if (openedMenu && openedMenu != id){
 		CloseMenu(id);
 	}
 
 	// サブウィンドウの表示
 	OpenMenu(id);
 }
 
 //レイヤメニューの表示
 function OpenMenu(id){ 
 
 	if ( document.getElementById ){
 		document.getElementById( id ).style.visibility = 'visible';
 	}else if ( document.all ){
 		document.all( id ).style.visibility = 'visible';
 	}else if ( document.layers ){
 		document.layers[ id ].visibility = 'show';
 	}
 
 	clearTimeout(submenuTimer);
 
 	openedMenu = id;
 
 }
 
 //レイヤメニューの削除
 function CloseMenu(){ 
 
 	if ( document.getElementById ){
 		document.getElementById( openedMenu ).style.visibility = 'hidden';
 	}else if ( document.all ){
 		document.all( openedMenu ).style.visibility = 'hidden';
 	}else if ( document.layers ){
 		document.layers[ openedMenu ].visibility = 'hide';
 	}
 
 	openedMenu = null;
 
 }
 
 //-->
 
<!--
function OpenWWinMap(){
	var win1 = window.open('map-win.html','network','width= 540,height= 600,location=0,scrollbars=0,resizable=0,menuber=0,status=1');
}
function on() {
window.focus();
}
//-->

