function zoom(image,colorcadre,bgcolor,w,h)
  {
     var fen = open('', '', 'width='+w+',height='+h+',resizable=1, location=0,directories=0,status=0,menubar=0,scrollbars=0,top=0,left=0');
          fen.document.open();
          fen.document.writeln('<html><head>');
          fen.document.writeln('<SCRIPT LANGUAGE="javascript">');
          fen.document.writeln('function fermer()');
          fen.document.writeln('{');
          fen.document.writeln('close("fen");');
          fen.document.writeln('}');
          fen.document.writeln('');
		  fen.document.writeln('<'+'/SCRIPT>');
          fen.document.writeln('</head>\n<body topmargin=0 leftmargin=0 BGCOLOR="'+bgcolor+'"><center>\n<TABLE BORDER=0 WIDTH="100%" HEIGHT="100%" CELLSPACING=0>\n<TR><TD ALIGN=MIDDLE>\n<TABLE BORDER=0 CELLSPACING=2 BGCOLOR='+colorcadre+'>\n<TR><TD ALIGN=MIDDLE>\n<TABLE WIDTH="100%" HEIGHT="100%" BORDER=0 BGCOLOR=FFFFFF>\n<TR><TD ALIGN=MIDDLE><a href="javascript:fermer();"><img src="'+ image +'" border=0 alt="Chargement en cours..."></A></TD></TR>\n</TABLE></TD></TR>\n</TABLE>\n</TD></TR>\n</TABLE>\n</center>');
          fen.document.writeln('</body></html>');
  }

