// ポイントが複数
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());

map.addControl(new GScaleControl());
map.setCenter(new GLatLng(1.304569,103.830582
), 12);

var marker1 = new GMarker(new GLatLng(1.304569,103.830582));
map.addOverlay(marker1);
GEvent.addListener(marker1,"click",function(){marker1.openInfoWindowHtml("<p class='name'><a href='http://www.epson.com.sg/other/othersites/EpSite_main.shtml' target='_blank'>epSITE, EPSON Imaging Gallery</a></p><p class='adress'>501 Orchard Road #03-18/19, Wheelock Place 238880</p><p class='phone'>TEL：6736-4986</p>");});

var marker2 = new GMarker(new GLatLng(1.300009,103.851763));
map.addOverlay(marker2);
GEvent.addListener(marker2,"click",function(){marker2.openInfoWindowHtml("<p class='name'><a href='http://www.nafa.edu.sg' target='_blank''>南洋アカデミー</a></p><p class='adress'>80 Bencoolen Street 189655</p><p class='phone'>TEL：6512-4033</p>");});


}
}


