﻿function spelerTopscorer(afdelingID) {
    startPauze();
    SVC_Speler.spelerTopscorer(afdelingID, onSpelerGot);
}
function spelerProvTopscorer(provID) {
    startPauze();
    SVC_Speler.spelerProvTopscorer(provID, onSpelerGot);
}
function spelerClubs(persoonID) {
    startPauze();
    SVC_Speler.spelerClubs(persoonID, onSpelerGot);
}
function spelerWisselingen(persoonID) {
    startPauze();
    SVC_Speler.spelerWisselingen(persoonID, onSpelerGot);
}
function onSpelerGot(result) {
    var hp=$get('mainContent');
    if (hp) hp.innerHTML=result;
    stopPauze();
}
