<!--

// © OLCI & je ne sais +

// version du 10/3/2002



var tempmsg   = "";

var outstring = " www.photopara.net :                                " +

                " La galerie photo du Parachutisme sous toutes ses formes         " +

                " Vol Relatif, free-style, voile contact, élèves, tandem, " +

                " surf, ...                                               " +

                "                                                 ";



function scroll()

{

  if (tempmsg == "")  /* Check if a temporary scrolltext has been set */

  {                   /* No temporary scrolltext chosen - use the main scrolltext */

    window.status = outstring;     /* Put the text on the window status line */

    outstring = outstring.substring(1, outstring.length) +      /* Rotate the text by one letter */

                outstring.substring(0, 1);

  }

  else

  { /* A temporary scrolltext has been chosen - use that one instead */

    window.status = tempmsg;                         /* Put the text on the window status line */

    tempmsg = tempmsg.substring(1, tempmsg.length) + /* Rotate the text by one letter */

              tempmsg.substring(0, 1);

  }

  timerTwo=window.setTimeout("scroll()", 100);       /* Call the next step */

}







// -->


