function showWaitIndicator(show, hide){      
    var objShow = FIND(show);
    objShow.style.display = "block";    
    var objHide = FIND(hide);
    objHide.style.display = "none"; 
    
    document.getElementById("body").style.backgroundColor = "#208dec";
  
}
