<!--
window.onload = show_popup;
window.onscroll = popover_onscroll;
var divtop = 50

function show_popup() {
        if (navigator.appName == "Microsoft Internet Explorer")
             {
         content.style.display="";
         content.filters[0].apply()
         content.filters[0].play()
         content.style.top= divtop;
             }
        else {
         document.getElementById("content_ppp").style.display = "block";
         content.style.display="none";
         content.style.display="";
        }
}

function hide_popup() {
    document.getElementById("content").style.display = "none"; 
    content.style.display="none";
}

function popover_onscroll()
{
    content.style.top = (window.pageYOffset ? window.pageYOffset : document.body.scrollTop) + divtop;
}
-->