function masque(){ 
/*---------------------------------------------------------
// 		afficher / masquer des calques
//		selon la propriété de style visibility ou display :
//		---------------------------------------------------
//		auteur : Stéphanie De Nadaï - esse%free.fr
//		compatibilité : IE 6 / (Moz 1.4 )/ firefox 0.8
//--------------------------------------------------------*/
	args = masque.arguments;
	//alert(args.length);
	for (var i=0; i<(args.length); i+=2)
	{ 
		if(document.getElementById(args[i])) var obj=document.getElementById(args[i]); 
		else if(top.document.getElementById(args[i])) var obj=top.document.getElementById(args[i]);
	switch(args[i+1])
		{
			case 0 : 		
				if(obj.style.visibility=="hidden")
					obj.style.visibility="visible";
				else
					obj.style.visibility="hidden";
			break;
			case 1 :
				if(obj.style.visibility=="visible")
					obj.style.visibility="hidden";
			break;
		}
	}			
}
function lecteur(rubrique) {
	window.open('spip.php?page=lecteurmp3&id_rubrique='+rubrique,'mp3','width=260, height=270, resizable=yes');
	//document.location = "";
	document.images['barbie'].src = "imgs/bras2.gif";
	document.getElementById('disk').style.backgroundImage='url(imgs/corpsmp3.gif)';
}
function fermeLecteur(){
	opener.document.images['barbie'].src = "imgs/bras.gif";
	opener.document.getElementById('disk').style.backgroundImage='url(imgs/corps.gif)';
	if(opener.document.getElementById('mp3').style.visibility=="visible")
		opener.document.getElementById('mp3').style.visibility="hidden";

}