 //<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		var blueIcon = new GIcon(G_DEFAULT_ICON);blueIcon.image = "http://www.iplaaraucana.cl/logomask.png";
		blueIcon.iconSize = new GSize(30, 37);
		blueIcon.shadowSize = new GSize(65, 39);
		blueIcon.iconAnchor = new GPoint(-10, 20);
		markerOptions = { icon:blueIcon };
		var metroIcon = new GIcon(G_DEFAULT_ICON);metroIcon.image = "http://www.iplaaraucana.cl/metro.png";
		metroIcon.iconSize = new GSize(35, 20);
		metroIcon.shadowSize = new GSize(55, 29);
		metroIcon.iconAnchor = new GPoint(-10, 20);
		markerOptions2 = { icon:metroIcon };
        map.setCenter(new GLatLng(-33.44921, -70.661594), 17);
        map.addControl(new GMapTypeControl());
        map.addControl(new GLargeMapControl());
        map.addControl(new GScaleControl());
        map.addControl(new GOverviewMapControl());
        function addtag(point, address) {
        var marker = new GMarker(point, markerOptions);
        GEvent.addListener(marker, "click", function() {
	marker.openInfoWindowHtml(address); } );
        return marker;
        }
		function addtag2(point2, address2) {
        var marker2 = new GMarker(point2, markerOptions2);
        GEvent.addListener(marker2, "click", function() {
	marker2.openInfoWindowHtml(address2); } );
        return marker2;
        }
        var point = new GLatLng(-33.44921,-70.661594);
		var point2 = new GLatLng(-33.446872,-70.661741);
        var address = '<b>INSTITUTO PROFESIONAL LA ARAUCANA</b><br/><i>Ejercito 171</i><br />';
		var address2 = '<b>METRO LOS HEROES</b>';
        var marker = addtag(point, address);
		var marker2 = addtag2(point2, address2)
        map.addOverlay(marker);
		map.addOverlay(marker2);
      }
    }
    //]]>
