
function PopCenter(url,largeur,hauteur) 
{
	var gauche = (screen.width - largeur)/2
	var haut =  (screen.height - hauteur)/2

	// return window.open(url,"","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+largeur+",height="+hauteur+",left="+gauche+",top="+haut)
	window.open(url,"","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,dependent=1,width="+largeur+",height="+hauteur+",left="+gauche+",top="+haut)

}

