﻿function InicializujPhotoBorder()
{
    document.getElementById("photo_border").style.height = (document.body.offsetHeight + 30) + "px";
    
    return false;
}

function StartPhoto(photo_image)
{   
    document.images['photo_image'].src = photo_image;
    
    document.getElementById("photo_border").style.display = "block";
    document.getElementById("photo").style.display = "block";
    document.getElementById("photo_image").style.display = "block";
    
    var x = document.documentElement.scrollTop;
    if(document.documentElement.clientHeight > 630)
    {
        x = x + (document.documentElement.clientHeight - 630) / 2;
    }

    document.getElementById("photo").style.top = x + "px";

    return false;
}

function ClosePhoto()
{
    document.getElementById("photo_border").style.display = "none";
    document.getElementById("photo").style.display = "none";
    document.getElementById("photo_image").style.display = "none";
    
    document.images['photo_image'].src = "Images/Black.png";
    
    return false;
}
