﻿function changePtImage(action, clic) {
    var tab = new Array;
    i = 1
    var img = document.getElementById("photo_pt" + i)

    while (img != null) {
        tab[i - 1] = img.src;
        i += 1;
        img = document.getElementById("photo_pt" + i)
    }

    var longueurTab = tab.length;
    if (action == 'next') {
        document.clicForm.nbClic.value = document.clicForm.nbClic.value * 1 + 1;
        if (longueurTab - 4 <= document.clicForm.nbClic.value) {
            document.clicForm.nbClic.value = longueurTab - 4;
            document.images['bas'].src = "Images/pixel.gif";
            document.images['haut'].src = "Images/offres/detail_offre/fleche_haut.gif";
        } else {
            document.images['haut'].src = "Images/offres/detail_offre/fleche_haut.gif";
        }
        if (document.clicForm.nbClic.value * 1 < longueurTab - 3) {
            if (longueurTab > 0) {
                document.images['photo_pt1'].src = tab[document.clicForm.nbClic.value * 1];
            }
            if (longueurTab > 1) {
                document.images['photo_pt2'].src = tab[document.clicForm.nbClic.value * 1 + 1];
            }
            if (longueurTab > 2) {
                document.images['photo_pt3'].src = tab[document.clicForm.nbClic.value * 1 + 2];
            }
            if (longueurTab > 3) {
                document.images['photo_pt4'].src = tab[document.clicForm.nbClic.value * 1 + 3];
            }
        }
    } else if (action == 'prev' && document.clicForm.nbClic.value * 1 > 0) {
        document.clicForm.nbClic.value = document.clicForm.nbClic.value * 1 - 1;
        if (document.clicForm.nbClic.value < 0 || document.clicForm.nbClic.value == 0) {
            document.clicForm.nbClic.value = 0;
            document.images['haut'].src = "Images/pixel.gif";
            document.images['bas'].src = "Images/offres/detail_offre/fleche_bas.gif";
        } else {
            document.images['haut'].src = "Images/offres/detail_offre/fleche_haut.gif";
        }
        if (document.clicForm.nbClic.value <= longueurTab - 4) document.images['bas'].src = "Images/offres/detail_offre/fleche_bas.gif";

        if (longueurTab > 0) {
            document.images['photo_pt1'].src = tab[document.clicForm.nbClic.value * 1];
        }
        if (longueurTab > 1) {
            document.images['photo_pt2'].src = tab[document.clicForm.nbClic.value * 1 + 1];
        }
        if (longueurTab > 2) {
            document.images['photo_pt3'].src = tab[document.clicForm.nbClic.value * 1 + 2];
        }
        if (longueurTab > 3) {
            document.images['photo_pt4'].src = tab[document.clicForm.nbClic.value * 1 + 3];
        }
    } else if (clic * 1 >= 0) {
        document.images['photo'].src = tab[document.clicForm.nbClic.value * 1 + clic * 1];
    }
    return;
}

