
function ouvrirPopUp(nom_fichier, largeur, hauteur)
    {
    var ma_pop_up = window.open(nom_fichier,
        "mon_fichier",
        "height=" + hauteur + ", width=" + largeur + ", left=50, location=0, menubar=1, resizable=1, scrollbars=1, status=0, toolbar=0, top=50"
    );
    }
