function show(q)
{
    if(document.getElementById(q).style.display == "none")
    {
        document.getElementById(q).style.display="block";
    }
    else
    {
        document.getElementById(q).style.display="none";
    }
}

function showinline(id, bShow)
{
    var ctl = document.getElementById(id);
    if (ctl == null)
    {
        return false;
    }
    if (bShow)
    {
        ctl.style.display="inline";
    }
    else
    {
        ctl.style.display="none";
    }
    return true;
}

function SetInnerText(id, text)
{
    var ctl = document.getElementById(id);
    if (ctl == null)
    {
        return false;
    }
    ctl.innerText = text;
}

function SetInnerHTML(id, text)
{
    var ctl = document.getElementById(id);
    if (ctl == null)
    {
        return false;
    }
    ctl.innerHTML = text;
}
