function createMap(){

	if (GBrowserIsCompatible()) {
		
		
		var icon = new GIcon();
		icon.image = "http://www.google.com/mapfiles/marker.png";
		icon.shadow = "http://www.google.com/mapfiles/shadow50.png";
		icon.iconSize = new GSize(20, 34);
		icon.shadowSize = new GSize(37, 34);
		icon.iconAnchor = new GPoint(8, 30);  //init 6,20
		icon.infoWindowAnchor = new GPoint(5, 1);

		var map = new GMap2(document.getElementById('map'));
		map.setCenter(new GLatLng(35.175,136.1462688446045), 13);
		
		var point = new GLatLng(35.160952909113085,136.14759117364883);
//		map.setMapType((typeof maptype == 'string') ? eval(maptype) : maptype);
		map.addControl(new GLargeMapControl());
//		map.addControl(new GMapTypeControl());
		var marker = new GMarker(point, icon);
		map.addOverlay(marker);
		var html = '<div style="font-size:small"><h4 style="margin-bottom: 10px;"><img src="../shared/img/logo_kiraku_s.gif" alt="木楽ファーム" /></h4><p>	〒521-1234<br />滋賀県東近江市きぬがさ町955番地<br />TEL : <strong>0748-42-6222</strong></p></div>';
		GEvent.addListener(marker, 'click', function() {
		    marker.openInfoWindowHtml(html);
		});
		marker.openInfoWindowHtml(html);
    } else {
		document.getElementById('map').innerHTML = '<p>The Google Map that should be displayed on this page is not compatible with your browser. Sorry.</p>';
    }
}
