﻿function showImage(target, AutoID, AutoPhoto, position){
    if(position == "hori"){
        xpos = 0;
    }else{
        xpos = target.offsetWidth + 20;
    }
    ypos = -40;
    
    do{
        xpos += target.offsetLeft;
        ypos += target.offsetTop;
        target = target.offsetParent;
    }while(target.offsetParent != null);
    
    if(position == "hori"){
        if(xpos > 500){
            xpos = xpos - 420;
        }else{
            xpos = xpos + 160;
        }
    }
    
    document.getElementById("ImagePopup").src = "";
    document.getElementById("ImagePopup").style.display = "none";
    document.getElementById("loadingIMG").className = "loadImg";
    document.getElementById("PopupContainer").style.top = ypos + "px";
    document.getElementById("PopupContainer").style.left = xpos + "px";
    document.getElementById("PopupContainer").className = "PopupContainer";
    document.getElementById("ImagePopup").onload = function(){
        document.getElementById("ImagePopup").style.display = "";
        document.getElementById("loadingIMG").className = "hidden";
    };
    document.getElementById("ImagePopup").src = "/db/Inventory/" + AutoID + "/large/" + AutoPhoto;
}

function hideImage(){
    document.getElementById("PopupContainer").className = "hidden";
}