function googlemap(){
    //<![CDATA[
    
    var map = new GMap(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.centerAndZoom(new GPoint(-80.078876, 26.29098), 3);
    
    var tedsicon = new GIcon();
	tedsicon.image = "/src/icon.png";
	tedsicon.iconSize = new GSize(21, 30);
	tedsicon.iconAnchor = new GPoint(10,0);
	tedsicon.infoWindowAnchor = new GPoint(20, 20);    
    
    var amherstpt = new GPoint(-80.078700, 26.29120);
	var amherst = new GMarker(amherstpt,tedsicon);
	var amhersthtml = "<div style='font-family: Verdana; font-size: 10px;'>1200&nbsp;Hillsboro&nbsp;Mile<br>Hillboro&nbsp;Beach,&nbsp;FL";
		
	GEvent.addListener(amherst, "click", function() {amherst.openInfoWindowHtml(amhersthtml);});
				
	map.addOverlay(amherst);
    
    //]]>
    }