function load() {  if (GBrowserIsCompatible()) {    var map = new GMap2(document.getElementById("map"));    map.addControl(new GLargeMapControl());    var point = new GLatLng(35.06475689721553, 136.69273406267166);    map.setCenter(point, 18);    var marker = new GMarker(point);    map.addOverlay(marker);        GEvent.addListener(marker, 'click', function() {      marker.openInfoWindowHtml( "<b>寺町美術教室:</b><br>三重県桑名市南寺町４９番地");    });          var points = [];      points[0] = new GLatLng(35.06520475693497, 136.6929566860199);      points[1] = new GLatLng(35.065222320011145, 136.69302642345428);      points[2] = new GLatLng(35.06475470181868, 136.6931900382042);      points[3] = new GLatLng(35.064739334039196, 136.69311225414276);      var polygon = new GPolygon(points, '#000000', 0, 0, '#FF0000', 0.5);      map.addOverlay(polygon);      points = [];      points[0] = new GLatLng(35.064706403073416, 136.6931203007698);      points[1] = new GLatLng(35.06470420767521, 136.69320344924927);      points[2] = new GLatLng(35.06425195438886, 136.6931712627411);      points[3] = new GLatLng(35.06405436721517, 136.69311225414276);      points[4] = new GLatLng(35.063981918465004, 136.69305860996246);      points[5] = new GLatLng(35.06403021763893, 136.69298350811005);      points[6] = new GLatLng(35.064078516784285, 136.69303178787231);      points[7] = new GLatLng(35.064065344292935, 136.69306933879852);      points[8] = new GLatLng(35.06432220749094, 136.69312566518783);      var polygon = new GPolygon(points, '#000000', 0, 0, '#FF0000', 0.5);      map.addOverlay(polygon);      points = [];      points[0] = new GLatLng(35.065237687699714, 136.69295132160187);      points[1] = new GLatLng(35.06525744615219, 136.6930103302002);      points[2] = new GLatLng(35.065740429058565, 136.69277161359787);      points[3] = new GLatLng(35.065727256835366, 136.69273138046265);      points[4] = new GLatLng(35.06558016686552, 136.6927769780159);      points[5] = new GLatLng(35.0653913644262, 136.6928869485855);      var polygon = new GPolygon(points, '#000000', 0, 0, '#FF0000', 0.5);      map.addOverlay(polygon);      var labelObj = new TLabel();      labelObj.id = "1";      labelObj.anchorLatLng = new GLatLng(35.06546820268095, 136.6928145289421);      labelObj.content = "<div class='gMsg'>駐車場</div>";      map.addTLabel(labelObj);      labelObj = new TLabel();      labelObj.id = "2";      labelObj.anchorLatLng = new GLatLng(35.06494131033876, 136.69305056333542);      labelObj.content = "<div class='gMsg'>駐車場</div>";      map.addTLabel(labelObj);      labelObj = new TLabel();      labelObj.id = "3";      labelObj.anchorLatLng = new GLatLng(35.064394655939104, 136.69313102960586);      labelObj.content = "<div class='gMsg'>駐車場</div>";      map.addTLabel(labelObj);  }}window.onload=load