// JavaScript Document

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = window.open(URLStr,'popUpWin','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+left+', top='+top+'');
}

var popUpWinCSS=0;

function popUpWindowCSS(URLStr, left, top, width, height)
{
  if(popUpWinCSS)
  {
    if(!popUpWinCSS.closed) popUpWinCSS.close();
  }
  popUpWinCSS = open(URLStr, 'popUpWinCSS', 'alwaysRaised=1,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

var popUpWinIMG=0;
function popUpWindowIMG(URLStr, left, top, width, height)
{
  if(popUpWinIMG)
  {
    if(!popUpWinIMG.closed) popUpWinIMG.close();
  }
  popUpWinIMG = open(URLStr, 'popUpWinIMG', 'alwaysRaised=1,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

var ns = (navigator.appName.indexOf("Netscape") != -1);
var d = document;


<!-- DEBUT DU SCRIPT PHOTO -->


// * Dependencies *
// this function requires the following snippets:
// JavaScript/readable_MM_functions/findObj
//
// Accepts a variable number of arguments, in triplets as follows:
// arg 1: simple name of a layer object, such as "Layer1"
// arg 2: ignored (for backward compatibility)
// arg 3: 'hide' or 'show'
// repeat...
//
// Example: showHideLayers(Layer1,'','show',Layer2,'','hide');

<!-- DEBUT DU SCRIPT DATE -->

function VersionNavigateur(Netscape, Explorer) {
  if ((navigator.appVersion.substring(0,3) >= Netscape && navigator.appName == 'Netscape') ||
      (navigator.appVersion.substring(0,3) >= Explorer && navigator.appName.substring(0,9) == 'Microsoft'))
    return true;
else return false;
}
function Semaine(lang){
    if (lang=='en')
    {
       this[0] = "Sunday";  this[1] = "Monday";
       this[2] = "Tuesday";     this[3] = "Wednesday";
       this[4] = "Thursday";     this[5] = "Friday";
       this[6] = "Saturday";
    }
    else
    {
       this[0] = "Dimanche";  this[1] = "Lundi";
       this[2] = "Mardi";     this[3] = "Mercredi";
       this[4] = "Jeudi";     this[5] = "Vendredi";
       this[6] = "Samedi";
    }
}

function Mois(lang){
    if (lang=='en')
    {
           this[0] = "January";    this[1] = "February";
           this[2] = "March";       this[3] = "April";
           this[4] = "May";        this[5] = "June";
           this[6] = "July";    this[7] = "August";
           this[8] = "September";  this[9] = "October";
           this[10] = "November";  this[11] = "December";
    }
    else
    {
           this[0] = "Janvier";    this[1] = "F&eacute;vrier";
           this[2] = "Mars";       this[3] = "Avril";
           this[4] = "Mai";        this[5] = "Juin";
           this[6] = "Juillet";    this[7] = "Ao&ucirc;t";
           this[8] = "Septembre";  this[9] = "Octobre";
           this[10] = "Novembre";  this[11] = "D&eacute;cembre";
    }
}
today = new Date;
function date(lang){
        var semaine=new Semaine(lang);
        var mois=new Mois(lang);
        var myDate=new Date();
        annee = today.getFullYear();

        var result=myDate.getDate()+" "+mois[myDate.getMonth()]+" "+annee;
        document.writeln(result);
    }
<!-- FIN DU SCRIPT DATE -->

<!-- FIN DU SCRIPT PHOTO -->


function switchImage(imgName, imgSrc)
{
  if (document.images)
  {
    if (imgSrc != "none")
    {
      document.images[imgName].src = imgSrc;
    }
  }
}


