cstat=null;

function show(m) {

if (cstat!=null){
cstat.style.display="none";
}

var stat = document.getElementById(m);

if (stat.style.display == "none") {
stat.style.display = "";
}

cstat=stat;
}
