﻿function scheidsAanvragen(afdelingID) {
    startPauze();
    SVC_Scheids.scheidsAanvragen(afdelingID, onScheidsGot);
}
function onScheidsGot(result) {
    var hp=$get('mainContent');
    if (hp) hp.innerHTML=result;
    stopPauze();
}