/* OUVRE / FERME
S'utilise avec un lien a href="javascript:visibilite('ID-DIV');", ou mouseover ou onclick, etc. */
function visibilite(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
            {
            targetElement.style.display = "block" ;
            } else {
            targetElement.style.display = "none" ;
            }
}
function ouvre(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
targetElement.style.display = "block" ;
}
function ferme(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
targetElement.style.display = "none" ;
}
/* OUVERTURE POP UP */
function popup(URL) {
 window.open(URL,'Lyrics','width=600,height=650,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0');
}