﻿//グローバルナビ
function gnavi(no){
	imax = 5;
	ilas = 4;
	var linklin = new Array();
	linklin[1]  = '新橋 ＞';
	linklin[2]  = '御殿場上町 ＞';
	linklin[3]  = '柴怒田 ＞';
	linklin[4]  = '須走 ＞';
	linklin[5]  = '籠坂';
	var linkurl = new Array();
	linkurl[1]  = './gotenba01.html';
	linkurl[2]  = './gotenba02.html';
	linkurl[3]  = './gotenba03.html';
	linkurl[4]  = './gotenba04.html';
	linkurl[5]  = '';
	for(i=1; i<=imax; i++){
		if (i <= ilas) {
			if (i == no) { clin = '* '; } else { clin = ''; }
			document.write('<li><a href="'+linkurl[i]+'">'+clin+linklin[i]+'</a></li>\n');
		}
		else {
			document.write('<li>'+linklin[i]+'</li>\n');
		}
	}
}

//イニシャライズ
var mapwin;

//マップ表示
function dispmap(map_u,win_w,win_h){
	mapwin=window.open('','Map','toolbar=no,width='+win_w+',height='+win_h+',directories=no,status=no,scrollbars=no,resizable=yes,menubar=no');
	mapwin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n');
	mapwin.document.write('<HTML lang="ja">\n');
	mapwin.document.write('<HEAD>\n');
	mapwin.document.write('<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">\n');
	mapwin.document.write('<TITLE>Map</TITLE>\n');
	mapwin.document.write('<LINK rel="stylesheet" href="./common.css" type="text/css">');
	mapwin.document.write('<STYLE type="text/css">');
	mapwin.document.write('<!--');
	mapwin.document.write('BODY { margin: 0px; text-align: center; }');
	mapwin.document.write('//-->');
	mapwin.document.write('</STYLE>');
	mapwin.document.write('</HEAD>\n');
	mapwin.document.write('<BODY topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
	mapwin.document.write(map_u);
	mapwin.document.write('</BODY>\n');
	mapwin.document.write('</HTML>\n');
	mapwin.document.close();
	mapwin.focus();
}

//ページ移動時マップ閉じ
window.onunload=function(){
	if ( mapwin ) { mapwin.close(); }
}

