diff --git a/htdocs/boutique/newsletter/fiche.php b/htdocs/boutique/newsletter/fiche.php
new file mode 100644
index 00000000000..e303f00ac2e
--- /dev/null
+++ b/htdocs/boutique/newsletter/fiche.php
@@ -0,0 +1,217 @@
+
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
+ * $Source$
+ *
+ */
+
+require("./pre.inc.php");
+
+$db = new Db();
+
+if ($action == 'add') {
+ $newsletter = new Newsletter($db);
+
+ $newsletter->nom = $nom;
+
+ $id = $newsletter->create($user);
+}
+
+if ($action == 'addga') {
+ $newsletter = new Newsletter($db);
+
+ $newsletter->linkga($id, $ga);
+}
+
+if ($action == 'update' && !$cancel)
+{
+ $newsletter = new Newsletter($db);
+
+ $newsletter->nom = $nom;
+
+ $newsletter->update($id, $user);
+}
+
+if ($HTTP_POST_VARS["action"] == 'confirm_delete' && $HTTP_POST_VARS["confirm"] == yes)
+{
+ $newsletter = new Newsletter($db);
+ $result = $newsletter->fetch($id);
+ $newsletter->delete();
+ Header("Location: index.php");
+}
+
+llxHeader();
+
+/*
+ *
+ *
+ */
+if ($action == 'create')
+{
+
+ print "
';
+
+}
+else
+{
+ if ($id)
+ {
+
+ $newsletter = new Newsletter($db);
+ $result = $newsletter->fetch($id);
+
+ if ( $result )
+ {
+
+ /*
+ * Confirmation de la suppression de la newsletter
+ *
+ */
+
+ if ($action == 'delete')
+ {
+
+ print '\n";
+ }
+
+ /*
+ * Edition de la fiche
+ *
+ */
+
+
+ if ($action == 'edit')
+ {
+ print '
Edition de la fiche Newsletter : '.$newsletter->titre.'