decal_x = 15;
decal_y = 10;
//****************
//document.onmousemove = suivre_souris0;
var contenu
function suivre_souris0(e) {
	if (navigator.appName=="Microsoft Internet Explorer") {
		var x = event.x + document.body.scrollLeft;	
		var y = event.y + document.body.scrollTop;
	} else {
		var x =  e.pageX;
		var y =  e.pageY;
	}
	document.getElementById("bulle").style.left = x + decal_x; 
	document.getElementById("bulle").style.top  = y + decal_y;
}
//****************
function pop0(contenu) {
	document.getElementById("bulle").innerHTML = contenu;
}
function disparaitre0() {
	document.getElementById("bulle").innerHTML = '';
}
function openPopupImage(path,langue){
	im = path;
	lang = langue;
	win2=window.open('agr.html','zoom','width=100px,height=100px,resizable=0,scrollbars=0')
}

function poi_function(format_fichier, idform){
	var form = document.getElementsByName("form_poi")[idform];
	form.format_poi.value = format_fichier;
	form.submit();
}

function poi_function_global(format_fichier){
	var form = document.getElementsByName("form_poi_global")[0];
	form.format_poi.value = format_fichier;
	form.submit();
}

function affiche_detail(){
	document.getElementById("detail_affiche").style.display="block";
}

function cache_detail(){
	document.getElementById("detail_affiche").style.display="none";
}

function affiche_detail_aides(){
	document.getElementById("detail_affiche_aides").style.display="block";
}

function cache_detail_aides(){
	document.getElementById("detail_affiche_aides").style.display="none";
}

function popupcentree(page,largeur,hauteur,options)
{
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
//****************