/*Ouverture popup*/
function popWindow(image, winName, features){	
w=window.open("",winName,features);
titre="Cirque ILYA";
w.document.write("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='fr'><head><title>"+titre+"</title></head>");
w.document.write("<body style='margin-left:0px;margin-top:0px'><img src='"+image+"' onclick='window.close();' alt='' /></body></html>");
w.document.close();
}


var option = null; // balise actuellement sélectionnée

function displayElem(id)
{
    if (id != option)
    {
        if (option != null)
        { 
            document.getElementById(option).style.display="none";
        }
        document.getElementById(id).style.display="inline";
        option=id;
    }
    else
    {
        document.getElementById(option).style.display="none";
        option=null;
    }
}


