        function popup1(page, nom, largeur, hauteur)
                {
                var gauche = (screen.width-largeur)/2;
                var haut = (screen.height-hauteur)/2;
                window.open(page, nom, 'width='+largeur+', height='+hauteur+', left='+gauche+',top='+haut+', menubar=0, scrollbars=0, locationbar=0, directories=0, resizable=0, statusbar=0, toolbar=0');
                }
	    function PopUp(url,formulaire)
        {
                popup1('','Rappel','600','450');
                document.forms[formulaire].action= url;
                document.forms[formulaire].submit();
        }
     
	

	