function OuvrePopupAdmin(action,idmodele)
{
    
		var ouvert = window.open("Pages/MajAccueil.php?action="+action,"Admin", "resizable=no, location=no, width=500, height=600, menubar=no, scrollbars=no");
    ouvert.focus();

}

function winOpen(url, largeur, hauteur)
{

      gauche = (screen.width/2)-(largeur/2);
      haut = (screen.height/2)-(hauteur/2);
      window.open(url,"popup","height="+hauteur+",width="+largeur+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = yes,fullscreen = no,top ="+haut+",left ="+gauche);
}

