
menuHTML = 
'<tr><td ID="A01" height=22 width=120 align=center valign=middle></td></tr><tr><td ID="A05" height=22 width=120 align=center valign=middle></td></tr><tr><td ID="A07" height=22 width=120 align=center valign=middle></td></tr><tr><td ID="A10" height=22 width=120 align=center valign=middle></td></tr><tr><td ID="A19" height=22 width=120 align=center valign=middle></td></tr><tr><td ID="A21" height=22 width=120 align=center valign=middle></td></tr><tr><td ID="A23" height=22 width=120 align=center valign=middle></td></tr><tr><td ID="A27" height=22 width=120 align=center valign=middle></td></tr>' ;


if (document.layers)
   alert ('unknown browser, cannot build the menu') ;
else if (document.all)
   <!-- Internet Explorer -->
   document.all.Buttons.outerHTML =
   '<table ID="Buttons" align=center border=0 cellpadding=0 cellspacing=0>' + menuHTML + '</table>' ;
else if (document.getElementById)
   <!-- Mozilla Firefox -->
   document.all.Buttons.innerHTML = menuHTML ;


document.all.A01.innerHTML =
 '<small><a href="' +home +'index.html">Introductie</a>' ;
menuBttn ('A01', pics + BttnFree );

document.all.A05.innerHTML =
 '<small><a href="' +home +'donorkind.html">D&#959;n&#959;rkinderen</a>' ;
menuBttn ('A05', pics + BttnFree );

document.all.A07.innerHTML =
 '<small><a href="' +home +'spermadonor.html">KID d&#959;n&#959;ren</a>' ;
menuBttn ('A07', pics + BttnFree );

document.all.A10.innerHTML =
 '<small><a href="' +home +'ouders.html">Ouders</a>' ;
menuBttn ('A10', pics + BttnFree );

document.all.A19.innerHTML =
 '<small><a href="' +home +'forums.html">Discussie-sites</a>' ;
menuBttn ('A19', pics + BttnFree );

document.all.A21.innerHTML =
 '<small><a href="' +home +'media.html">Pers</a>' ;
menuBttn ('A21', pics + BttnFree );

document.all.A23.innerHTML =
 '<small><a href="' +home +'onderzoek.html">Onderzoek</a>' ;
menuBttn ('A23', pics + BttnFree );

document.all.A27.innerHTML =
 '<small><a href="' +home +'privacy.html">Privacy</a>' ;
menuBttn ('A27', pics + BttnFree );


function menuBttn (id, picture) {
  if (document.layers)
    document[id].background.src = picture == 'none' ? null : picture;
  else if (document.all)
    document.all[id].style.backgroundImage = picture == 'none' ? 'none' 
: 'url(' + picture + ')';
  else if (document.getElementById)
    document.getElementById(id).style.backgroundImage = picture == 
'none' ? 'none' : 'url(' + picture + ')';
   }

