/* Fonctions */
{
    function displayPhotoAlbum(idAlbum)
    {
        document.albumForm.idAlbum.value = idAlbum;
        document.albumForm.etat.value = 'show_photos';
        document.albumForm.submit();
    }
    
    function displayAlbums()
    {
        document.photoForm.etat.value = 'show_albums';
        document.photoForm.submit();
    }
}