<!-- -->
<!--                                                                                                                                -->
<!--        Fichier de fonctions Javascript utilisées dans ce projet        -->
<!--                                                                                                                                -->
<!--        fichier externe.js                                                                                        -->
<!--                                                                                                                                -->
<!-- -->

	<!-- Fonction retour simple-->

        function b_back()
                {
                        window.history.back();
                }

	<!-- Fonction retour double-->

        function b_2back()
                {
                        window.history.go(-2);
                }

	<!-- Fonction retour de 3 -->

        function b_3back()
                {
                        window.history.go(-3);
                }

	<!-- Fonction affiche infos du Site VelosLoder-->

        function about()
                {
                        window.alert("Création et Conception\n\nECKSTEIN Georges\n\nJuillet 2005");
                }

	<!-- Fonction message de En construction-->

        function construction()
                {
                        window.alert("Page en cours de construction\n\nMerci de repasser plus tard");
                }

    <!-- Fonction de fermeture de la fenetre en cours -->

        function c_close()
                 {
                         window.close()
                 }
