/* AUTEUR: MASCARON FORMATION */
/* DATE DE CREATION: 11/01/02 */
// affichage d'une fenetre volante contenant le fichier passé en paramètre
function fenetre(titre, fichier, largeur, hauteur, coordX, coordY)
{
	fen =  window.open(fichier, titre,'toolbar=no,location=no,directories=art,status=yes,scrollbars=yes,resizable=no,copyhistory=no,width='+largeur+',height='+hauteur+',top='+coordY+',left='+ coordX);
}

