function collapse(bnrgrande){
document.getElementById(bnrgrande).style.display = 'none'; 
}

function expand(bnrgrande){
document.getElementById(bnrgrande).style.display = ''; 
}
