function ViewList(a) {
    document.getElementById('list_' + a).style.display = 'block';
}
function CloseList(a) {
    document.getElementById('list_' + a).style.display = 'none';
}

