function show(ding) {
 if(document.getElementById)
   document.getElementById(ding).style.visibility = "visible";
}

function hide(ding) {
 if(document.getElementById)
   document.getElementById(ding).style.visibility = "hidden";
}


