var actualFrameIdId = null;
var contentDivID = "contentDiv";
var innerContentDivID = "innerContentDiv";
var backgroundID = "background-gray";

function loadPic(PIC)
{

  // Load new frame
  showVis(contentDivID);
  showVis(backgroundID);
  var el1 = document.getElementById('bigimage');
  var el2 = document.getElementById(contentDivID);

  el1.src = PIC;
  image = new Image();
  image.src = PIC;
  el2.style.height=(image.height+70)+"px";
  el2.style.width=(image.width+20)+"px";

}

function closeFrame()
{
  actualFrameIdId = null;
  hideVis(contentDivID);
  hideVis(backgroundID);
}
var swapPicLock=false;
function swapPix(THUMBNAIL)
{
  //if (swapPicLock==false)//'http://dendaachatelier.lu/images/'+PATH!=document.getElementById('smallimage').src &&  
  //{
    //swapPicLock = true;
    var thumbnailsrc = document.getElementById(THUMBNAIL).src;
    document.getElementById(THUMBNAIL).src  = document.getElementById('smallimage').src;
    document.getElementById('imagepath').innerHTML = THUMBNAIL;
    //while (document.getElementById(THUMBNAIL).src!=document.getElementById('smallimage').src) {}
    document.getElementById('smallimage').src = thumbnailsrc;
    document.getElementById('bigpiclink').href = thumbnailsrc;
    //swapPicLock = false;
  //}
}