﻿function HideText(objectId){
    return SwitchClass(objectId, 'LinkTable_Section_ItemText_Hidden');
}
function ShowText(objectId){
    return SwitchClass(objectId, 'LinkTable_Section_ItemText_Visible');
}
function SwitchClass(objectId, newClass){
    var object = document.getElementById(objectId)
    object.className = newClass;
}