var map = null;

function FindCallBack(shapeLayer, results, positions, moreResults, e)
{
		var icon = "<div style='font-size:10px;font-family: Arial, Helvetica, sans-serif;color:#000000;font-weight:bold;text-align:center;width:34px;padding-left:3px;padding-top:2px;height:25px;background-repeat:no-repeat;background-image: URL(images/pointeur3.png)'></div>";
		
		if(positions != null && positions.length > 0)
		{
			latlong = new VELatLong(positions[0].LatLong.Latitude,positions[0].LatLong.Longitude);
			shape = new VEShape(VEShapeType.Pushpin,latlong);
			shape.SetTitle(shapeLayer.GetTitle());
			shape.SetDescription(shapeLayer.GetDescription());
			map.ClearInfoBoxStyles();
			shape.SetZIndex(999);
			shape.SetCustomIcon(icon);
			map.AddShape(shape); 
		
		}
}