
/* unsichtbar */

// basics  unsichtbar WK
function show (id)
{
  if (document.getElementById(id).style.visibility=='hidden')
  {
     document.getElementById(id).style.visibility='visible';
  } else
  {
   document.getElementById(id).style.visibility='hidden';
  }
}

// 

function an(id)
{document.getElementById(id).style.visibility = 'visible';
}

function an(id)
{
document.getElementById(id).style.visibility = 'visible';
document.getElementById('bild').style.opacity= '0.40';
}

function aus(id)
{document.getElementById(id).style.visibility = 'hidden';
document.getElementById('bild').style.opacity= '1.00';
}

function an1(id)
{
document.getElementById('info'+id).style.visibility = 'visible';
document.getElementById('bild'+id).style.opacity= '0.40';
}

function aus1(id)
{document.getElementById('info'+id).style.visibility = 'hidden';
document.getElementById('bild'+id).style.opacity= '1.00';
}
