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



