//Ouverture d'une PopUp en JavaScript pour afficher les minisites HTML
function popupMiniSiteUWH(url, width, height){
	var x = (screen.width - width) / 2;
	var y = (screen.height - height) / 2;
	
	window.open(
		url,
		'MiniSite', 
		'width='+ width +', height='+ height +', left='+ x +', top='+ y +', menubar=no, status=no, scrollbars=yes'
	);
}