// MapWindow Popup
function mapWindow(locale) {
	if(locale=="head_office") win=window.open('../service/map/head_office.html','MapWindow','scrollbars=yes,width=600,height=565');
	if(locale=="yokohama") win=window.open('../service/map/yokohama.html','MapWindow','scrollbars=yes,width=600,height=470');
	if(locale=="osaka") win=window.open('../service/map/osaka.html','MapWindow','scrollbars=yes,width=600,height=415');
	if(locale=="nagoya") win=window.open('../service/map/nagoya.html','MapWindow','scrollbars=yes,width=600,height=415');
	if(locale=="fukushima") win=window.open('../service/map/fukushima.html','MapWindow','scrollbars=yes,width=600,height=415')
	win.window.moveTo(10,10);
}

