﻿<!--
function showTakein(name) {
	if (name != "") {
		pos_x = (screen.availWidth - 800) / 2 ;
		pos_y = (screen.availHeight - 600) /2 ;

		newWin = window.open("common.html", "takein_Viewer", "status=no,top="+pos_y+",left="+pos_x+",width=800,height=600");
		newWin.focus() ;

		if (name == "sagamihara") {
			newWin = window.open("01-sagamihara/01-sagamihara.html", "takein_Viewer", "status=no,top="+pos_y+",left="+pos_x+",width=800,height=600");
			newWin.focus() ;
		}
		if (name == "jinbasan") {
			newWin = window.open("02-jinbasan/02-jinbasan.html", "takein_Viewer", "status=no,top="+pos_y+",left="+pos_x+",width=800,height=600");
			newWin.focus() ;
		}
		if (name == "miyagase") {
			newWin = window.open("03-miyagase/03-miyagase.html", "takein_Viewer", "status=no,top="+pos_y+",left="+pos_x+",width=800,height=600");
			newWin.focus() ;
		}
	}
}

//-->
