﻿function ShowModal(Id){window.onscroll = function () { document.getElementById(Id).style.top = document.body.scrollTop; };with(document){getElementById(Id).style.display = "block";getElementById(Id).style.top = document.body.scrollTop;}}
function HideModal(Id){document.getElementById(Id).style.display = "none";}
