function LeesMeer (anchor,element,text_less,text_more) {
  //if (Element.visible(element)) {
  if ($(element).hasClassName('hidden')) {
    //Element.hide(element);
    $(element).removeClassName('hidden');
    Element.update(anchor,text_less);
    }
  else {
    //Element.show(element);
    $(element).addClassName('hidden');
    Element.update(anchor,text_more);
    }
  return false;
}

function ShowBand(id) {
  location.href=('/bandpagina.php?id='+id);
}

function ShowAlbum(album_id,band_id) {
  location.href=('bandpagina.php?id='+band_id +'&album_id='+album_id);
}

