function setMap(latitude, longitude) {
    if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("googleMap"));
        map.setCenter(new GLatLng(latitude, longitude), 13);
        map.setUIToDefault();
        
         // Create our "tiny" marker icon
        var blueIcon = new GIcon(G_DEFAULT_ICON);
        blueIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png";
        
        // Set up our GMarkerOptions object
        markerOptions = { icon:blueIcon };
        
        // Add marker for site
        var latlng = new GLatLng(latitude, longitude);
        map.addOverlay(new GMarker(latlng, markerOptions));
	}
}