function Affiche(idelt) {
  	if ($("#"+idelt).get(0).style.display == 'none')
  	{
  		$("#"+idelt).slideDown("slow");
  	}
  	else
  	{
  		Cache(idelt)
  	}
  }
function Cache(idelt) {
	$("#"+idelt).slideUp("slow");
}

function AfficheLabel(idelt) {
	$("#"+idelt).slideDown("slow");
}

function CacheBulle(idelt) {
	$("#"+idelt).fadeOut("slow");
	$("#bullefleche").fadeOut("slow");	
}


function AfficheBulle(idelt) {
  	if ($("#"+idelt).get(0).style.display == 'none'){  
		$("#"+idelt).fadeIn("slow");
		$("#bullefleche").fadeIn("slow");
  	}
  	else{
  		CacheBulle(idelt)
  	}
  }
  
function Bouge(idelt) {

	$(document).ready(function(){
		$("#"+idelt).draggable();	
	});

}

function Popup(url)
{
	popup = window.open(url,"popupTemoignage","width=410, height=350, top=100, left=100, scrollbars=yes");
	popup.focus();
}
