// JavaScript Document
function Hide(section)
{
    section.style.display="none";
}

function Show(section)

{
    section.style.display="";
}

function ShowHide(section)
{
    if (section.style.display=="") {
        Hide(section);
    }
    else {
        Show(section);
    }
}







