/**
 * Affiche le bloc demandé.
 */
function afficherBloc(bloc) {
  window.document.getElementById(bloc).style.display = "block";
}

/**
 * Masque le bloc demandé.
 */
function masquerBloc(bloc) {
  window.top.document.getElementById(bloc).style.display = "none";
}

/**
 * Ouvre une popup.
 */
function ouvrirPopup(url, fenetre, width, height) {
  var win = window.open(url, fenetre, "width=" + width + ",height=" + height + ",screenX=50,screenY=50,menubar=no,toolbar=no,status=yes,scrollbars=yes,resizable=yes,location=no");
  win.focus();
}

/**
 * Désactive le lien demandé.
 */
function disableLink(id) {
  if (document.links.length > 0) {
    if (document.getElementById) {
      document.getElementById(id).href = '#';
    }
    else if (document.all) {
      document.all[id].href = '#';
    }
  }
}

/**
 * Demande l'affichage du PDF.
 */
function afficherImageAttentePDF() {
  if (window.top.document.images) {
    image1 = new Image();
    image1.src = "oneydocs/ressources/img/attente-grand.gif";
  }
}