function AfficherZoom() {
    setTimeout("AfficherFlash()", 400);
}
function AfficherFlash() {
    document.getElementById("ContenuDuZoom").style.visibility = "visible";
}
function MasquerZoom() {
    document.getElementById("ContenuDuZoom").style.visibility = "hidden";
}
