$(setOpenMap);

function setOpenMap() {
	$('.openMap').click(
		function() {
			window.open(this.href, '', 'width=616, height=750, scrollbars=yes');
			return false;
		}
	);
}

// Flashから使用するための関数
function openMap(mapPath) {
	window.open(mapPath, '', 'width=616, height=750, scrollbars=yes');
}



