function popup(lien, w, h, scroll)
{
if (window.focus){
	newwindow=window.open(lien, '', 'width='+w+', height='+h+', resizable=yes,scrollbars='+scroll+',menubar=no');
	if (window.focus) {newwindow.focus()}
	return false;
	//Utilisation :
	//<a href="popupex.html" onClick="return popup('popupex.html')">Link to popup</a>
	}
}

