﻿function pageLoad() {
    var loadMe = document.getElementById("dnn_cs1_hid1").value;
    var loadOther = document.getElementById("dnn_cs1_hid2").value;

    var show = document.getElementById("dnn_cs1_sh").value;

    if (show == "true") {
        ShowBanner(loadMe);
    } 
}

function ShowBanner(tipe) {
    XL_SkinObject_CrossSellingChild.PromoServies.GetCSBannerChild(tipe, onSukses);
}


function onSukses(pay) {

    document.getElementById("spanChild").innerHTML = pay;

}