var popupShowing = false;

function togglePopup(){
    if(!popupShowing){
        document.getElementById("product-popup").style.display = "block";
        popupShowing = true;
    }else{
        document.getElementById("product-popup").style.display = "none";
        popupShowing = false;    
    }
}
