﻿// JScript File

function HideShow(sControl) 
{
    oControl = document.getElementById(sControl);
    if (oControl.style.display == "none") 
    {
        oControl.style.display = "";        
    }
    else
    {
        oControl.style.display = "none";
    }
}

function Show(sControl) 
{
    oControl = document.getElementById(sControl);
    oControl.style.display = "";
    oControl.style.height = "";
}

function Hide(sControl) 
{
    oControl = document.getElementById(sControl);
    oControl.style.display = "none";
    oControl.style.height = "1px";
}
