function showstuff(divdonker){ 
   document.getElementById(divdonker).style.visibility="visible"; 
} 

function hidestuff(divdonker){ 
   document.getElementById(divdonker).style.visibility="hidden"; 
}