﻿// Footer JScript File

function getFooter(){
    var url = '';    
    url = "Footer.aspx?rnd="+Math.random();
    //showProgressSearch();
    invokeServer(url, "WriteFooter")
}
function WriteFooter(){
    //hideProgressSearch();
    var output=unescape(arguments[0]);
    try{
        var divFooter=document.getElementById("divFooter")
        if (divFooter!=null){
            divFooter.innerHTML=output;
        }
    }
    catch(err){
        alert(err);
    }
}
