function popup(url, largeur, hauteur, scroll) {
	if (url) {
		scroll = scroll ? scroll : 'yes';
		largeur = largeur && largeur <= screen.width ? largeur : screen.width;
		hauteur = hauteur && hauteur <= screen.height ? hauteur : screen.height;
		var nw = window.open(url, '_blank','location=no,toolbar=no,status=no,menubar=no,scrollbars=' + scroll + ',resizable=no,width=' + largeur + ',height=' + hauteur );
		xpos = (screen.width  - largeur)/2;
		ypos = (screen.height - hauteur)/2;
		nw.moveTo(parseInt(xpos), parseInt(ypos));
	}
}