
<!-- Hide script from older browsers

// Index for picture to display
var index = 1;



function DisplayPicture()
{
  document.images.Vue.src    = eval( "img" + index + ".src" );
  document.images.Vue.width  = eval( "img" + index + ".width" );
  document.images.Vue.height = eval( "img" + index + ".height" );

  document.getElementById( 'texte' ).childNodes[0].nodeValue = eval( "txt" + index );
}

function PreviousPic()
{
  // increment the index to get the previous picture
  if ( index == 1 )
  {
    index = total;
  }
  else
  {
    index = index - 1;
  }

  // Display the picture
  DisplayPicture();
}

function NextPic()
{
  // increment the index to get the next picture
  if ( index == total )
  {
    index = 1;
  }
  else
  {
    index = index + 1;
  }

  // Display the picture
  DisplayPicture();
}


//-->

