// JavaScript Document

function afficheDescURL(toThis,n)
  {
  	var pop=document.getElementById("pop");
	if (pop)
	{
    	pop.innerHTML = toThis;
		if (toThis) 
		{
			if (n==0) pop.style.top = '140px'; else pop.style.top = '197px';
			if (n==0) pop.style.background = 'url(images/bulle1.png)'; else pop.style.background = 'url(images/bulle0.png)'; 
			pop.style.display ='block';
		}
		else pop.style.display ='none';
		// on efface la popup en cliquant dessus
		pop.onclick = function()
		{
			this.style.display = 'none';
		};
    }
  }

function effaceDescURL()
	{
		setTimeout("afficheDescURL('')",5000);
	}
