function cli(tar){
    vis = document.getElementById(tar).style.display;
    val = vis == "none" ? "block" : "none";
    document.all(tar).style.display = val;
}