function open_popup(pUrl)
{
	var widthPopup = Math.max(400,screen.width - 300);
	var heightPopup = Math.max(200,screen.height - 300);
	var top = (screen.height-heightPopup)/2;
	var left = (screen.width-widthPopup)/2;

	var thestyle='status=yes,location=yes,directorie=yes,resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,top='+top+',left='+left+',width='+widthPopup+',height='+heightPopup;
	var w_page_popup = window.open(pUrl,'dongreffe_popup',thestyle);
	w_page_popup.focus();
}

function OuvrirMiniSite2(url) {
	window.open(url, "MiniSite", "menubar=no, status=no, scrollbars=yes, menubar=no, width=802, height=600");
}
