function makevisible(cur,which,id)
{
	if(document.getElementById)
	{
		if (which==0)
		{
			AffDesc(id);
			if(document.all)
				cur.filters.alpha.opacity=100
			else
			{
				cur.style.setProperty("-moz-opacity", 1, "");
				//cur.style.setProperty("-webkit-box-shadow", "0 0 0 white", "");
				//cur.style.setProperty("-moz-box-shadow", "5px 5px 5px #555", "");
			}
		}
		else
		{
			if(document.all)
				cur.filters.alpha.opacity=40
			else
			{
				cur.style.setProperty("-moz-opacity", .4, "");
				//cur.style.setProperty("-webkit-box-shadow", "5px 5px 5px #555", "");
				//cur.style.setProperty("-webkit-box-shadow", "0 0 0 white", "");
			}
		}
	}
}

function AffDesc(num)
{
	if(document.getElementById)
	{
		document.getElementById("desc").innerHTML = '<strong>'+lien_titre[num]+'</strong><br>'+lien_des[num]+'<br><br><a href="'+lien_url[num]+'">'+lien_url[num]+'</a>';
	}
	/*else
		window.open(lien_big[num],"_blank");*/
}

function mention(mention)
{
	if(document.getElementById)
	{
		document.getElementById("desc").innerHTML = mention;
	}
	else
		window.open("mentions.html","_blank");	
}
