function showBlock( id ) {
    var theDiv = document.getElementById('person' + id);

    theDiv.style.display = "block";
}

function hideBlock( id ) {
    var theDiv = document.getElementById('person' + id);

    theDiv.style.display = "none";
}
