function cshow(id) {
document.getElementById('c'+id).style.visibility = "visible";
}

function chide(id) {
document.getElementById('c'+id).style.visibility = "hidden";
}
