﻿// scripts used to eliminate annoying flickering of popup panels during postbacks
// functions are to be attached to link buttons' OnClientClick and ModulPopupExtenders' OnOkScript/OnCancelScript
// all the popup panels must be within stopFlash div

function showPanels()
{
            var thePopup = document.getElementById("stopFlash");
            thePopup.style.visibility="visible";
            thePopup.style.display="block";
}
    
function hidePanels()
{
            var thePopup = document.getElementById("stopFlash");
            thePopup.style.visibility="hidden";
            thePopup.style.display="none";
}



