<!--
/********************************pop up******************************/
function popup(URL, NomFenetre, width, height, scroll)
{
	var winLeft = (screen.width - width) / 2;
	var winTop = (screen.height - height) / 2;
	winCaract = 'height=' + height + ',width=' + width + ',top=' + winTop + ',left=' + winLeft + ',scrollbars=' + scroll + ',resizable=1'
	nouvelleFenetre=window.open(URL, NomFenetre, winCaract)
	nouvelleFenetre.focus()
	nouvelleFenetre.resizeTo(width,height)
}
// -->