function hideS(divId){
    if(document.getElementById(divId) != null){
        document.getElementById(divId).style.display = 'none';
    }
}

function showS(divId){
    if(document.getElementById(divId) != null){
        document.getElementById(divId).style.display = 'block';
    }
}