//<![CDATA[
function load() {

      if (GBrowserIsCompatible()) {

        var map = new GMap2(document.getElementById("map"));

map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(-27.594470488737763,-48.55504274368286), 16);


var icon = new GIcon();
icon.image = "http://labs.google.com/ridefinder/images/mm_20_purple.png";
icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
icon.iconSize = new GSize(12, 20);
icon.shadowSize = new GSize(22, 20);
icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(5, 1);


 function createMarker(point,html) {
 var marker = new GMarker(point,icon);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);

   });

        return marker;

      }


var point = new GLatLng(-27.594470488737763,-48.55504274368286);
var marker = createMarker(point)
map.addOverlay(marker);
marker.openInfoWindowHtml('<a href="http://www.floripaimages.com/accommodation/acc_info.php?acc_id=161">Valerim Hotel</a>');	


      }

    }



    //]]>// JavaScript Document
