function popup(src, name, width, height, title)
{
	var wnd = window.open('', name, 'width=' + width + ', height=' + height + ', left=0, top=0, scrollbars=yes, resizable=yes, menubar=no, location=no, dependent=yes');

	// Placement de la fenêtre au milieu de l'écran
	var left = (screen.width - width) / 2;
	var top  = (screen.height - height) / 2;
	wnd.moveTo(left, top);
	
if(title != '')
		wnd.document.title = title;
	wnd.document.location = src;
	
	wnd.focus(); // Si la fenêtre était déjà ouverte, il faut la rappeler en premier plan
}
