function cls(d) {
document.getElementById(d).style.display = "none";
}

function opn(d) {
document.getElementById(d).style.display = "block";
}