﻿// JScript File
var objDEST_Msg;
function callContent(hidecont, dest, filename, index) {
    document.getElementById(hidecont).style.display = "none"; 
    stopTimer();
    objDEST_Msg = eval("document.getElementById('" + dest + "')");
    objDEST_Msg.innerHTML = "<img src='images/loader.gif'/>";    
    slideWebService.GetFlashContent(filename, index, callComplete, callError);
}

function callComplete(result) {
    objDEST_Msg.innerHTML = result;
    ShowSWF();
}
function callError(result) {
    window.alert("Error! " + result);
}

