
function showBox(id) {
document.getElementById(id).style.visibility='visible';
}

function hideBox(id) {
document.getElementById(id).style.visibility='hidden';
}