function com(id){
	afficher(id);
}
function afficher(id) {
    popup('/commentaires.php?id='+id);
}
function comnews(id){
	affichernews(id);
}
function affichernews(id) {
    popup('/commentairesnews.php?id='+id);
}

function popup(lien, large, haut) {
    largeur_fenetre = (large) ? large : 480;
    hauteur_fenetre = (haut) ? haut : 650;

    var li_largeur_ecran=screen.width
    var li_hauteur_ecran=screen.height

    var li_pos_left=Math.round((li_largeur_ecran/2)-(largeur_fenetre/2))
    var li_pos_top=Math.round((li_hauteur_ecran/2)-(hauteur_fenetre/2))
    popupCom = window.open(lien,"Commentaire","status=1,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0, left=" + li_pos_left + ",top=" + li_pos_top + ",width=" + largeur_fenetre + ",height=" + hauteur_fenetre);

}


