﻿function setCompStand(klasseID) {
    startPauze();
    SVC_Comp.compStand(klasseID, onMainPageGot);
}
function cmp_stand(klasseID) {
    startPauze();
    SVC_Comp.compStand(klasseID, onMainPageGot);
}
function cmp_nws(klasseID) {
    startPauze();
    SVC_Comp.compNieuws(klasseID, onMainPageGot);
}
function cmp_uit(klasseID) {
    startPauze();
    SVC_Comp.compUitslagen(klasseID, onMainPageGot);
}
function cmp_prg(klasseID) {
    startPauze();
    SVC_Comp.compProgramma(klasseID, onMainPageGot);
}
function cmp_tsc(klasseID) {
    startPauze();
    SVC_Comp.compTopscorer(klasseID, onMainPageGot);
}
function cmp_prs(klasseID) {
    startPauze();
    SVC_Comp.compPeriodeStand(klasseID, onMainPageGot);
}
function cmp_tms(klasseID) {
    startPauze();
    SVC_Comp.compTeams(klasseID, onMainPageGot);
}
function cmp_vkn(klasseID) {
    startPauze();
    SVC_Comp.compKenners(klasseID, onMainPageGot);
}
function cmp_sms(klasseID) {
    startPauze();
    SVC_Comp.compSMS(klasseID, onMainPageGot);
}
function cmp_vrs(afdid, seizoen) {
    startPauze();
    SVC_Comp.compVerslagen(afdid, seizoen, onMainPageGot);
}
function cmp_odd(wnr, w, g, v, k) {
    sT();
    sP();
    SVC_Comp.ODDS(wnr, w, g, v, k, onPUscrollGot);
}
function onMainPageGot(result) {
    var hp=$get('mainContent');
    if (hp) hp.innerHTML=result;
    stopPauze();
}


