﻿/// <reference name="MicrosoftAjax.debug.js" />

function moveToResumePopup()
{
    // hide the current page    
    Sys.UI.DomElement.addCssClass($get('ucModalRefError_divModalPage_ModalRefError'), 'displayNone');
    
    // show the resume popup    
    Sys.UI.DomElement.removeCssClass($get('divModalPage_ModalResume'), 'displayNone');        
}

function doResume()
{
    g_iProgressDelay = 0;
    isRetrieveCodeValid($get('ucModalResume_txtRef').value);
}

//Archive

function archive_closeWindow() {
    hidePopup('divModalPage_ModalArchiveSelection');
}

function clearReportVariables() {
    var wordDL = $get('wordurl');
    var onlineDL = $get('onlineurl');
    if (wordDL != null && onlineDL != null) {
        {
            wordDL.value = '';
            onlineDL.value = '';
        }
        
    }
}

function clearCart() 
{
}

if( typeof(Sys) !== 'undefined' )
  Sys.Application.notifyScriptLoaded();