﻿
function ShowPopUp()
{
    if (document.getElementById("_POPUP")) {
        document.getElementById("_POPUP").style.visibility = "visible";
    }        
}  

function HidePopUp()
{
    if (document.getElementById("_POPUP")) {
        document.getElementById("_POPUP").style.visibility = "hidden";
    }        
}

