﻿function modalboxShow(id)
{
    document.getElementById(id).style.top=(document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop)+"px";
    document.body.style.overflow="hidden";
    document.body.scroll="no";
    document.getElementById(id).style.display="block";
}

function modalboxHide(id)
{
    document.body.style.overflow="";
    document.body.scroll="yes";
    document.getElementById(id).style.display="none";
}
