﻿

////////////////////////////////
var ImageInterval = 5000; // En milliseconde;
var NumPicture = 1;
////////////////////////////////

function OpenPopup(Url)
{
    var width = 400;
    var height = 500;
    var left = (screen.width / 2) - (width / 2);
    var top = (screen.height / 2) - (height / 2 );
    window.open(Url, "Tridem", "width=" + width + ",height=" + height + ", top=" + top + ", left=" + left + ", scrollbars=yes")
}

function StartLoopPicture()
{
    if (location.href.toLowerCase().indexOf("default.aspx") > -1 || location.href.toLowerCase().indexOf("homepage.aspx") > -1 )
    {
        // Ne rien faire car la page d'accueil anglais et français
        // doivent avoir le papillon comme image et ne doivent pas défiler.
    }
    else
    {
        UpdatePicture();
        window.setInterval("UpdatePicture()", ImageInterval);
    }
}

function UpdatePicture()
{
    document.getElementById("imgTridem").src = "images/perso" + NumPicture + ".jpg";  
    if (NumPicture == 8){NumPicture=1;}else{NumPicture++;}
}

