// Fenetre Volante
function fenetrevolante(lien,largeur, hauteur)
{
	var opts = "toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, copyhistory=no";
	opts += ",width=" + largeur + ",height=" + hauteur + ",left=300, top=50";
	window.open(lien, "", opts);
}