﻿// JScript File
function ShowDiv(p_show, p_hide)
{
    if (document.getElementById(p_show))
    {
        document.getElementById(p_show).style.display = 'block';
    }
    if (document.getElementById(p_hide))
    {
        document.getElementById(p_hide).style.display = 'none';
    }
}