function ToggleControl(id)
{
    var objControl = document.getElementById(id);
    if(objControl.style.display == "none")
    {
        objControl.style.display = "block";
    }else
    {
        objControl.style.display = "none";
    }
    return false;
}
