﻿function GLoad(clientId,lat,lng){
    if (GBrowserIsCompatible()){
        var map=new GMap2($get(clientId));
        map.disableDragging();
        map.enableDoubleClickZoom();
        map.setCenter(new GLatLng(lat,lng),8);
        map.setMapType(G_NORMAL_MAP);
    }
}
