﻿// JScript 文件

function ShowWindow(divId)
{
    var sHeight = screen.height;
    document.getElementById(divId).style.height=sHeight + "px";
}

function HideDiv(divId)
{
    document.getElementById(divId).style.display = "none";
}