function setVisibility(id, visibility) {
document.getElementById(id).style.display = visibility;
}

function show(a){
document.getElementById(a).style.display = 'inline';
}

function hide(a){
document.getElementById(a).style.display = 'none';
}
