function MsGMap_showAddress(address,objMap) {
  var geocoder = new GClientGeocoder();
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
  	    objMap.setCenter(point, 15);
		MsGMap_placeMarker(objMap,address,point);
      }
    }
  );
}

function MsGMap_setPoint_byAddress(objMap,vAddress){
	
}

function MsGMap_setPoint_byCoords(objMap,vX,vY){
	
}

function MsGMap_placeMarker(objMap,vText,point){
  	var marker = new GMarker(point);
	objMap.addOverlay(marker);
	marker.openInfoWindowHtml(vText);
}
