/* auteur: Alexandre Perron */
/* Date de création: 2006-01-09 */
function MyPopup(url, name, w, h, scroll) {
	var lpos = (screen.width - w) / 2;
	var tpos = (screen.height - h) / 3;
	params = 'height='+h+',width='+w+',top='+tpos+',left='+lpos+',scrollbars='+scroll+',resizable'
	popup = window.open(url, name, params)
	if (parseInt(navigator.appVersion) >= 4) {
		popup.window.focus();
	}
}
