// googlemapsのpopup
$(function(){
	var geocoder = new GClientGeocoder();
	var html='<nobr>およそこの周辺です</nobr>'; // ふきだしの中身の指定(html)
	var zoom =  14; // googleMapsのzoom指定
	var size_x = 760; // 横サイズ
	var size_y = 760; // 縦サイズ
	$(".googlemap_popup").click(function(){
		adrs = $("#googlemap_popup_address").text();
		w = window.open('','googlemaps_window','width='+size_x+', height='+size_y);
		geocoder.getLatLng(adrs,function(point){
			w.location.href= '/js/gstreetmap.php?glat='+point.y+'&glng='+point.x;
		});
		return false;
	});
});


