
(function($){

	$(document).ready(function(){
		$('#map-kosugi').click(function(){
			openMapWindow($(this).parent('a').attr('href'), 670, 500);
			return false;
		});
		$('#map-iwaki').click(function(){
			openMapWindow($(this).parent('a').attr('href'), 670, 570);
			return false;
		});
	});

	function openMapWindow(url, w, h) {
		window.open(url, 'new', 'toolbar=yes,location=yes,directories=yes,resizable=yes,status=yes,width='+ w +',height='+ h +')');
	}

})(jQuery);
