function setOrg() {
    document.getElementById('sfbody_ind').style.display='none';
    document.getElementById('tabind').style.borderBottom='1px solid #58595b';
    document.getElementById('tabind').style.backgroundColor='#d0d0d0';
    document.getElementById('sfbody_org').style.display='block';
    document.getElementById('taborg').style.borderBottom='none';
    document.getElementById('taborg').style.backgroundColor='';
    
}
function setInd() {
    document.getElementById('sfbody_ind').style.display='block';
    document.getElementById('tabind').style.borderBottom='none';
    document.getElementById('tabind').style.backgroundColor='';
    document.getElementById('sfbody_org').style.display='none';
    document.getElementById('taborg').style.borderBottom='1px solid #58595b';
    document.getElementById('taborg').style.backgroundColor='#d0d0d0';
}
