function getSelectedLink(
	url
) {
	location.href = url;
}

function getAnchor(
	id
) {
	location.href = "#" + id;
}

function drawGmap(
	arg_lat,
	arg_lng,
	arg_address,
	arg_title
) {
	$(function() {
		
		// * link
		var link = './heiwadai.html';
		
		$("#gmap").gmap3({
			latitude: arg_lat,
			longitude: arg_lng,
			zoom: 14,
			navigationControl: true,
			mapTypeControl: true,
			scaleControl: true,
			scrollwheel: false,
			markers: [
				{
					address: arg_address,
					title: arg_title,
					content: '<div class="hoge"><b>' + arg_title + '</b><br /><p>' + arg_address + '</p></div>',
					openInfo: true
				}
			]
		});
	});
}
