var lecteur = {
    affiche:function(id,url) {
        window.open('/lecteur.php?id=' + id,'lecteur_' + id,'width=300,height=150,dependant=yes');
    }
};

var acheter = {
    affiche:function(id,url) {
        window.open('/acheter.php?id=' + id,'lecteur_' + id,'width=500,height=500,dependant=yes');
    }
};

function $(elem) {
    return document.getElementById(elem);
}

