/* ======================================== */
/*	セプレいたの	葬儀について			*/
/*					hall.html用				*/
/* ======================================== */

/* ---------------------------------------- */
/*	案内地図を別窓で開く					*/
/* ---------------------------------------- */
function openMap(argMapName) {
	targetUrl = '';
	targetTtl = '';
	switch (argMapName) {
		case 'MAP1':
			targetUrl = './hall_map1.html';
			targetTtl = 'MAP1';
			break;
		case 'MAP2':
			targetUrl = './hall_map2.html';
			targetTtl = 'MAP2';
			break;
		case 'MAP3':
			targetUrl = './area_map.html';
			targetTtl = 'MAP3';
			break;
		default:
			alert("ILLEGAL MAP ID.");
	}
	window.open(targetUrl, targetTtl, "width=820,height=800,scrollbars=1,location=0,menubar=0,status=0,toolbar=0,directories=0");
}

/* ---------------------------------------- */
/*	案内地図を印刷							*/
/* ---------------------------------------- */
function printMap() {
	print();
}

/* ---------------------------------------- */
/*	案内地図を閉じる						*/
/* ---------------------------------------- */
function closeMap() {
	close();
	return false;
}


