var huidige = 0;
var totaal = 0;
var fotos = new Array();
function toevoegen(album,plaatje,omschrijving)
{
  if (!fotos[totaal]) {
    fotos[totaal] = new Array();
  }
  fotos[totaal]['album'] = album;
  fotos[totaal]['plaatje'] = plaatje;
  fotos[totaal]['omschrijving'] = omschrijving;
  totaal += 1;
}
function volgende()
{
  if(huidige == totaal-1)
  {
    huidige = 0;
  }else
  {
    huidige += 1
  }
  tonen(huidige);
}
function vorige()
{
  if(huidige == 0)
  {
    huidige = totaal-1;
  }else
  {
    huidige -= 1;
  }
  tonen(huidige);
}
function tonen(x)
{
  huidige = x;
  var hLink = document.getElementById("naarfotoalbum");
  var hFoto = document.getElementById("popupfoto");
  var hFotoLink = document.getElementById("popupfotolink");
  var hOmschrijving = document.getElementById("popupfotoomschrijving");
  hLink.href = "fotoalbum.aspx?fotoalbumid="+fotos[x]['album'];
  hFoto.src = "../../pages/thumb.aspx?w=210&h=200&keepaspectratio=1&minimaal=1&f="+fotos[x]['plaatje']+"";
  hFotoLink.href = "../upload/"+fotos[x]['plaatje'];
  hOmschrijving.innerHTML = fotos[x]['omschrijving']
}
