function overSub( theDiv ) {
  if(document.all) {
    theDiv.style.background = 'url(' + verz + 'dunkelgelber-verlauf.gif)';
    //theDiv.all.tags('A')[0].style.color='#1E1E8C';
    //theDiv.all.tags('A')[0].style.textDecoration='none';
  }
}

function outSub( theDiv ) {
  if(document.all) {
    theDiv.style.background = 'url(' + verz + 'hellgelber_verlauf.gif)';
    //theDiv.all.tags('A')[0].style.color='#FFFFFF';
    //theDiv.all.tags('A')[0].style.textDecoration='underline';
  }
}

// Netscape 6 kennt zwar das Ereignis onClick bei TDs aber nicht bei DIVs!
// (Die wenigen Netscape-Benutzer muessen direkt auf den Link klicken.)
function clickSub( theDiv ) {
  document.location.href = theDiv.all.tags('A')[0].href;
}

