 <!-- 
 // toon tekst en zet kleur
 function inn(src,txt)
  {
   if (!src.contains(event.fromElement)) 
    {
     src.style.cursor = 'hand';
     src.bgColor      = 'white';
    }
     window.status = txt;
  }
 // toon tekst en zet kleur
 function ut(src,strColor)
  { 
   if (!src.contains(event.toElement)) 
    {
     src.style.cursor = 'default';
     src.bgColor      =  strColor;
    }
   window.status = '';
  }
 //-->
