function popup(bestand, hoogte, breedte)
{ newWindow = window.open(bestand, "popup_ojcniks","height=" + hoogte + ", width=" + breedte);
  newWindow.focus();
}

function popupAgendaView(naam, datum)
{ newWindow = window.open("activiteit.php?datum=" + datum + "&naam=" + naam, "agendaView","height=450, width=417, scrollbars=yes");
  newWindow.focus();
}