
<!--
function setNoFrame()
   {
   if (top != self)
      {
      var PosDons;
      var Url = ""
      var winCourant;
      var winCible = null;

      try
         {
         winCourant = self.parent;
         }
      catch( err )
         {
         winCourant = null;
         }

      if( winCourant != null )
         {
         try
            {
            Url = winCourant.location.href.toLowerCase();

            PosDons = Url.indexOf( '?' );
            if( PosDons != -1 )
               Url = Url.substr( 0, PosDons + 1 );
            }
         catch( err )
            {
            Url = "";
            }
         }

      while( winCourant != null && winCible != top && Url != "" && Url.indexOf( 'asp/gpi.aspx' ) != -1 )
         {
         winCible = winCourant;

         try
            {
            winCourant = winCourant.parent;
            }
         catch( err )
            {
            window.alert( err );
            winCourant = null
            }

         if( winCourant != null )
            {
            try
               {
               Url = winCourant.location.href.toLowerCase();

               PosDons = Url.indexOf( '?' );
               if( PosDons != -1 )
                  Url = Url.substr( 0, PosDons + 1 );
               }
            catch( err )
               {
               Url = "";
               }
            }
         }

      if( winCible != null )
         winCible.location.href = location.href;
      }
   }
// -->

<!--
function CookieCheck( Page )
   {
   if (!navigator.cookieEnabled)  
      top.location.href = Page;
   }
// -->

<!--
function doOnLoadAccueil(Str_Langue)
   {
   setNoFrame();
   CookieCheck("../asp/JLErrCookie" + Str_Langue + ".html");
   }
// -->




