﻿function dispMap(div, area) {
	var myOptions = {zoom: 16, mapTypeId: google.maps.MapTypeId.ROADMAP};
	var marker = null;
	var geocoder = new google.maps.Geocoder();
	var map = new google.maps.Map(div, myOptions);
	geocoder.geocode({'address': area}, function(results, status) {
		map.setCenter(results[0].geometry.location);
		marker = new google.maps.Marker({map: map, position: results[0].geometry.location});
	});
	return false;
}
