function ouvrirFlash(titre,flashPath,largeur,hauteur) {
	var H = (screen.height - hauteur) / 2;
	var L = (screen.width - largeur) / 2;
	var w = window.open('','windowName','status=no,scrollbars=no,resizable=no,height='+hauteur+',width='+largeur+',top='+H+',left='+L);
	w.document.write('<html><head>');
	w.document.write('<title>');
	w.document.write(titre + " - " + flashPath);
	w.document.write('<\/title>');
	w.document.write('<\/head><body>');
	w.document.write('<embed src="' + flashPath + '" type="application/x-shockwave-flash" width="780" height="580"><\/embed>');
	w.document.write('<\/body><\/html>');
	w.document.close();
}
