function googlemap() {

    var map = new GMap(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.centerAndZoom(new GPoint(-78.748955, 42.962039),7);

    var xyzicon = new GIcon();
        xyzicon.image = "icon.png";
        xyzicon.iconSize = new GSize(40, 29);
        xyzicon.iconAnchor = new GPoint(10, 10);
        xyzicon.infoWindowAnchor = new GPoint(20, 20);

   var cheektowagapt = new GPoint(-78.7121153,42.965933);
        var cheektowaga = new GMarker(cheektowagapt,xyzicon);
        var cheektowagahtml = "<div style='width: 200px;'><b>IIAAWNY</b><br>6470 Main Street Suite 2<br>Williamsville, NY 14231<br>716-926-0322 <br> <a target='_blank' href='http://maps.google.com/maps?q=6470+Main,+Williamsville,+NY+14221&hl=en'>Get Driving Directions</a><br/>";


        GEvent.addListener(cheektowaga, "click", function() {cheektowaga.openInfoWindowHtml(cheektowagahtml);});

        map.addOverlay(cheektowaga);

}

