$(document).ready(function(){
	$("#message").prepend('\n\n');
	
	
	$("#boutonPosteImprimer").click(function(){
		window.print();
	});
});


function affiche_gmap_detail(latitude,longitude){
	if(!latitude || !longitude) {
		$("#jobsLocaliserMap").text('Le poste n\'est pas localisable');
		return;
	} else {
		if($("#jobsLocaliserMap").attr('name') != 'filled'){
			var map = initSingleGmap($("#jobsLocaliserMap"));
			map.addControl(new GSmallMapControl());
			map.enableContinuousZoom();		// aténue l'effet lors du zoom
			map.enableDoubleClickZoom();	// autorise le double clic pour zoomer
			if(! displayMarkerByCoords( map, latitude, longitude)){
				return false;
			}
		}
	}
}
