/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function showHideDiv(lista){
    if (document.getElementById(lista).style.display == "block") {
        document.getElementById(lista).style.display = "none";
        
    } else {
        document.getElementById(lista).style.display = "block";
    }
}

