function popupcentered(url, width, height)
{
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	window.open(url, 'voeux', 'left=' + left + ',top=' + top + ',width=' + width + ',height=' + height + '');
}