function creerFenImage(larg,haut,nom) {
				 if (larg == null) {   larg = 320}
				 if (haut == null) {   haut = 200}
				 if (nom == null) {	 nom	=	"FenImage"}
				 //alert(String(larg)+String(haut)+nom);
				 atribStr="width="+String(larg)+",height="+String(haut);
				 fiRef = window.open ("",nom,atribStr + ",top=0,left=0,toolbar=no,menubar=no,location=no,directories=no,resizable=yes,status=no,scrollbars=yes");

    }

function FermerFen(){
				 this.close()
}

function AfficheDate() {
today = new Date()
document.write(today.getDate(),"/",today.getMonth()+1,"/",today.getYear());
document.write(" ",today.getHours(),":",today.getMinutes());
}
