function toggle(theTogglerId1, theTogglerId2, theToggledId) {
    theTogglerObj1 = document.getElementById(theTogglerId1);
    theTogglerObj2 = document.getElementById(theTogglerId2);
    theToggledObj  = document.getElementById(theToggledId);
    
    theTogglerObj1.style.display = (theTogglerObj1.style.display == 'block') ? 'none' : 'block';
    theTogglerObj2.style.display = (theTogglerObj2.style.display == 'block') ? 'none' : 'block';
    theToggledObj.style.display  = (theToggledObj.style.display == '') ? 'none' : '';
}

function toggle_replies(theTogglerId1, theTogglerId2, theToggledId) {
    theTogglerObj1 = document.getElementById(theTogglerId1);
    theTogglerObj2 = document.getElementById(theTogglerId2);
    theToggledObj  = document.getElementById(theToggledId);
    
    theTogglerObj1.style.display = (theTogglerObj1.style.display == 'block') ? 'none' : 'block';
    theTogglerObj2.style.display = (theTogglerObj2.style.display == 'block') ? 'none' : 'block';
    theToggledObj.style.display  = (theToggledObj.style.display == 'block') ? 'none' : 'block';
}

