﻿// JScript File
function ShowFull(obj)
{
    var scrollX, scrollY;
    if (document.all)
    {
      if (!document.documentElement.scrollLeft)
        scrollX = document.body.scrollLeft;
      else
        scrollX = document.documentElement.scrollLeft;

      if (!document.documentElement.scrollTop)
        scrollY = document.body.scrollTop;
      else
        scrollY = document.documentElement.scrollTop;
    }
    else
    {
      scrollX = window.pageXOffset;
      scrollY = window.pageYOffset;
    }
    document.getElementById(obj).style.top = scrollY;
    document.getElementById(obj).style.display = "block";
}

function HideFull(obj)
{
    document.getElementById(obj).style.display = "none";
}