<!--
// Ouvre un popup en récupérant les valeurs d'un formulaire

function pop_it(the_form,the_url,features) {
   my_form = eval(the_form);
   window.open(the_url,"popup",features);
   my_form.target = "popup";
   my_form.submit();
}

//-->
