function showInfo(ind) {
s = document.getElementById(ind);
s.style.display = 'block';
}

function hideinfo(ind) {
a = document.getElementById(ind);
a.style.display = 'none';
}