function hinweise()
{
 var hinweise = window.open('hinweise.htm','hinweise','width=320,height=230');
 hinweise.focus();
}

function trndats_outline(id)
{
 var img = id + '_img';
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
  document.getElementById(img).src = 'icons/buchauf.gif';
 }
 else
 {
  document.getElementById(id).style.display = 'none';
  document.getElementById(img).src = 'icons/buchzu.gif';
 }
}

var buchauf = new Image;
buchauf.src = 'icons/buchauf.gif';