function ouvrir(theURL,winName,features,w,h) {
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
      window.open(theURL,winName,features+'width='+w+',height='+h+',top='+wint+',left='+winl);
}
