// JavaScript Document
function affichage_popup_resa(num_prod,track)
{

width = 1020;
height = 600;
nom_interne_de_la_fenetre = 'Reservation';
nom_de_la_page = 'reservation.php?code='+num_prod+'&track='+track;

window.open(nom_de_la_page, nom_interne_de_la_fenetre, config='height='+height+', width='+width+', toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no');
} 

 /*function OuvrirPopup(page,nom,option) {
       window.open(page,nom,option);
    }*/
