function toggleClassDisplay(nameOclass){
var alltagsDis=document.body.getElementsByTagName("DIV");
for (i=0; i < alltagsDis.length; i++){
if (alltagsDis[i].className==nameOclass){
if (alltagsDis[i].style.display=='none'){
alltagsDis[i].style.display = '';
} else alltagsDis[i].style.display = 'none';
}}}