diff --git a/htdocs/phenix/phenix.php b/htdocs/phenix/phenix.php
new file mode 100644
index 00000000000..8c578e8cad5
--- /dev/null
+++ b/htdocs/phenix/phenix.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$
+ */
+
+/** \file htdocs/phenix/phenix.php
+ \ingroup phenix
+ \brief Page générant 2 frames, une pour le menu Dolibarr, l'autre pour l'affichage du calendrier
+ \author Laurent Destailleur
+ \version $Revision$
+*/
+
+require("./pre.inc.php");
+
+$url=PHPPHENIX_URL;
+$mainmenu=isset($_GET["mainmenu"])?$_GET["mainmenu"]:"";
+$leftmenu=isset($_GET["leftmenu"])?$_GET["leftmenu"]:"";
+
+print "
+
+
+Dolibarr frame for Phenix
+
+
+
+
+
+
+
+ Malheureusement, votre navigateur est trop vieux pour visualiser cette zone.
+ Il vous faut un navigateur gérant les frames.
+
+
+
+
+
+";
+
+
+?>
diff --git a/htdocs/phenix/phenixtop.php b/htdocs/phenix/phenixtop.php
new file mode 100644
index 00000000000..458f0909a99
--- /dev/null
+++ b/htdocs/phenix/phenixtop.php
@@ -0,0 +1,44 @@
+
+ *
+ * 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$
+ */
+
+/**
+ \file htdocs/phenix/phenixtop.php
+ \ingroup phenix
+ \brief Frame du haut Dolibarr pour l'affichage du calendrier
+ \author Laurent Destailleur
+ \version $Revision$
+*/
+
+require ("../main.inc.php");
+
+top_menu("","","_top");
+
+?>
+
+
+
+
+
+
+
+
+
+
diff --git a/htdocs/phenix/pre.inc.php b/htdocs/phenix/pre.inc.php
new file mode 100644
index 00000000000..770c724dacc
--- /dev/null
+++ b/htdocs/phenix/pre.inc.php
@@ -0,0 +1,45 @@
+
+ *
+ * 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$
+ */
+
+/**
+ \file htdocs/phenix/pre.inc.php
+ \ingroup phenix
+ \brief Fichier de gestion du menu gauche du module phenix
+ \version $Revision$
+*/
+
+require ("../main.inc.php");
+
+$user->getrights('phenix');
+
+function llxHeader($head = "", $title="", $help_url='')
+{
+ global $langs;
+
+ top_menu($head, $title);
+
+ $menu = new Menu();
+
+
+
+ left_menu($menu->liste, $help_url);
+}
+?>