function hideOverlay(a){el=document.getElementById(a);if(el){el.style.visibility="hidden";el.style.display="none";el.style.zIndex="-1"}}function showOverlay(a){el=document.getElementById(a);if(el){el.style.visibility="visible";el.style.display="block";el.style.zIndex="1000"}var b=el.getAttribute("modal:onshow");if(b)setTimeout(b,0)}function initModalOverlay(){var a=document.getElementsByTagName("div");var b={};for(i=0;i<a.length;i++){if(a[i].className=="overlay"){var c=a[i].id;var d=c.substr(0,c.lastIndexOf('_'));b[d]=c;a[i].style.position="absolute";a[i].style.visibility="hidden";a[i].style.display="none";a[i].style.zIndex="-1"}}if(document.location.hash){var e=document.location.hash.substr(1);if(b[e]){showOverlay(b[e]);PostLoadImages(document.getElementById(e))}}}