﻿// JScript File


// UpdateProgress Loading Bar
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_initializeRequest(InitializeRequest);
prm.add_endRequest(EndRequest);
var postBackElement;
function InitializeRequest(sender, args) {
    // if(postBackElement.id = '') {
    $get('ctl00_ContentPlaceHolderMain_UpdateProgress_LoadingBar').style.display = 'block';  
    $get('ctl00_ContentPlaceHolderMain_UpdateProgress_LoadingBar').style.visibility = 'visible';  
    var pop = $find("ctl00_ContentPlaceHolderMain_ModalPopupExtender_Loading");
    pop.show();
    //}
}
function EndRequest(sender, args) {
    // if(postBackElement.id = '') {
    $get('ctl00_ContentPlaceHolderMain_UpdateProgress_LoadingBar').style.display = 'none';
    $get('ctl00_ContentPlaceHolderMain_UpdateProgress_LoadingBar').style.visibility = 'hidden';  
    var pop = $find("ctl00_ContentPlaceHolderMain_ModalPopupExtender_Loading");
    pop.hide();
    //}
}
// End of UpdateProgress Loading Bar


