// JS script pour ouvrir et fermer les popup 

    var w;
    function Ouvrir() {
       w=window.open("popactiv_280106.html","pop1",
		   "width=580 height=360, top=250, left=260, scrollbars=yes, resizable=yes");
    }

	 function Ouvrir2() {
       w=window.open("pop_arlon1.html","pop2",
		   "width=300 height=600, top=200, left=260, resizable=no");
    }
    function Fermer() {
       if (w.document) {w.close();}
    }
 
