function onWindowLoad() {
    var iframe = document.getElementById("AVCAHostingControl");
    iframe.width = 669;
    iframe.height = 950;
    /*
    iframe.scrolling = "no";
    iframe.frameborder = "0";
    iframe.marginWidth = 0;
    iframe.marginHeight = "0";
    iframe.allowtransparency = "true"; */

    var script = document.getElementById("AVCAHostingControlScript");
    //alert(script);
    //alert(script.src.indexOf("/", 8));

    // get the index of the first backward slash after the ones from the protocol
    var server = script.src.substring(0, script.src.indexOf("/", 9))
    //alert(server);

    var cid = iframe.getAttribute("cid");
	var did = iframe.getAttribute("did");
    var openInNewWindow = iframe.getAttribute("openInNewWindow");
    var showLiveTab = iframe.getAttribute("showLiveTab");
    var showUpcomingTab = iframe.getAttribute("showUpcomingTab");
    //alert(cid); alert(openInNewWindow);

    iframe.src = server + "/Silverlight/CustomerPage/SLCustomerMainPage.html?cid=" + cid + "&did=" + did + "&openInNewWindow=" + openInNewWindow + "&showLiveTab=" + showLiveTab + "&showUpcomingTab="+showUpcomingTab;
}

window.onload = onWindowLoad;
