diff --git a/htdocs/public/dons/eucd.xsl b/htdocs/public/dons/eucd.xsl
new file mode 100644
index 00000000000..6b76a7b0287
--- /dev/null
+++ b/htdocs/public/dons/eucd.xsl
@@ -0,0 +1,65 @@
+
+]>
+
+
+
+
+
+ http://france.fsfeurope.org
+ http://www.fsfeurope.org
+ http://www.fsf.org
+ http://www.gnu.org
+ nofile.html
+ nofile.html
+
+
+
+
+
+
+
+
+
+
+
+ DO NOT MODIFY THIS DOCUMENT. IT WAS GENERATED BY XSLT PROCESSING
+ AND YOUR MODIFICATIONS WILL BE LOST. THE SOURCE OF THE DOCUMENT
+ IS IN THE .xhtml FILE USE make all TO REGENERATE
+
+
+
+
+
+
+
+
+
+
+
+
+ Dons FSF France - Fond de secours EUCD.INFO
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/htdocs/public/dons/index.php b/htdocs/public/dons/index.php
new file mode 100644
index 00000000000..86bd54d045d
--- /dev/null
+++ b/htdocs/public/dons/index.php
@@ -0,0 +1,64 @@
+
+ *
+ * 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("../../don.class.php");
+require("../../lib/mysql.lib.php3");
+require("../../conf/conf.class.php3");
+
+if ($HTTP_POST_VARS["action"] == 'add')
+{
+
+ $conf = new Conf();
+ $db = new Db();
+ $don = new Don($db);
+
+ $don->projetid = $HTTP_POST_VARS["projetid"];
+ $don->date = time();
+ $don->nom = $HTTP_POST_VARS["nom"];
+ $don->adresse = $HTTP_POST_VARS["adresse"];
+ $don->cp = $HTTP_POST_VARS["cp"];
+ $don->ville = $HTTP_POST_VARS["ville"];
+ $don->public = $HTTP_POST_VARS["public"];
+ $don->email = $HTTP_POST_VARS["email"];
+ $don->amount = $HTTP_POST_VARS["montant"];
+
+
+ if ($don->check())
+ {
+ $return = $don->create(0);
+
+ require("merci.php");
+ }
+ else
+ {
+ require("erreur.php");
+ }
+
+
+}
+else
+{
+require("don.php");
+}
+
+
+?>
diff --git a/htdocs/public/dons/merci.xhtml b/htdocs/public/dons/merci.xhtml
index a37cfc5f5e1..d8a3f4ed216 100644
--- a/htdocs/public/dons/merci.xhtml
+++ b/htdocs/public/dons/merci.xhtml
@@ -58,19 +58,14 @@