// Set the position of the popup window based on the anchor
function fnShowPop(objPop) {
    objPop.style.display = "block";
}

function fnHidePop(objPop) {
    objPop.style.display = "none";
}