function outline(id)
{
 var img = id + '_img';
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
  document.getElementById(img).src = 'vdp_regoffen.png';
 }
 else
 {
  document.getElementById(id).style.display = 'none';
  document.getElementById(img).src = 'vdp_regzu.png';
 }
}



