/g, '>').replace(/"/g, """).replace(/'/g, "'");}function lelementInnerHTMLSetEscaped(e, content) { LFTRACE(); if (!e) { LRDFAULT("lelementInnerHTMLSetEscaped called on invalid element"); return; } e.innerHTML = lescapeHTML(content);}function lelementChildAppend(eParent, eChild) { LFTRACE(); if (!eParent) { LRDFAULT("lelementChildAppend called on invalid parent element"); return; } if (!eChild) { LRDFAULT("lelementChildAppend called on invalid child element"); return; } eParent.appendChild(eChild);}function lelementInnerHTMLSet(e, content) { if (!e) { LRDFAULT("lelementInnerHTMLSet called on invalid element"); return; } e.innerHTML = content;}function ldialogCaptionSet(div, caption) { LFTRACE(); var eCaption = document.createElement('h3'); lelementInnerHTMLSetEscaped(eCaption, caption); lelementChildAppend(div, eCaption);}function ldialogAddControl(div, e) { LFTRACE(); if (!e) { LRDFAULT('ldialogAddControl called on invalid element'); return; } lelementChildAppend(div, e);}function ldialogAddStaticHTML(div, text) { LFTRACE(); let eStaticText = document.createElement('p'); lelementInnerHTMLSet(eStaticText, text); lelementStyleSet(eStaticText, 'width', '100%'); ldialogAddControl(div, eStaticText);}function lelementOnClickHandlerSet(e, eventHandler) { if (!e) { LRDFAULT("lelementOnClickHandlerSet called on invalid element"); return; } if (e.addEventListener) { e.addEventListener('click', eventHandler); } else if (e.attachEvent) { e.attachEvent('onclick', eventHandler); } else { LRDFAULT("lelementOnClickHandlerSet cannot set click handler on this element"); }}function ldialogAddButton(div, text, cbOnClick, bBtnPrimary) { LFTRACE(); let eButton = document.createElement('button'); if (bBtnPrimary) { lelementClassListAdd(eButton, 'modal-submit'); } else { lelementClassListAdd(eButton, 'btn-secondary'); } text = text || 'Cancel'; let lowerCaseText = text.toLowerCase(); if ((lowerCaseText === 'yes') || (lowerCaseText === 'ok')) { LDEBUG('ldialogAddButton: Button label should not be "Yes" or "OK". Please use a descriptive verb. E.g. "Add Item" or "Save Item".'); } lelementInnerHTMLSetEscaped(eButton, text); eButton.control = div; lelementOnClickHandlerSet(eButton, cbOnClick); var eBtnContainer = div.querySelector('.modal-footer__row'); if (!eBtnContainer) { eBtnContainer = document.createElement('div'); lelementClassListAdd(eBtnContainer, 'modal-footer__row'); lelementChildAppend(div, eBtnContainer); } lelementChildAppend(eBtnContainer, eButton); return eButton;}function lelementIsHidden(e) { if (!e) { LRDFAULT('The element you\'re trying to check if hidden doesn\'t exist'); return; } var style = window.getComputedStyle(e); return (style.display === 'none');}function lelementDisplaySet(e, d) { if (e) { e.style.display = d; } else { LRDFAULT("lelementDisplaySet called on invalid element"); }}function lscriptCreateAJAX(page) { var AJAX; if (window.XMLHttpRequest) AJAX = new XMLHttpRequest(); else AJAX = new ActiveXObject('Microsoft.XMLHTTP'); AJAX.open('POST', page); AJAX.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); AJAX.setRequestHeader('X-AJAX', 'true'); return AJAX;}function lutilsRedirect(sDestination) { LFTRACE(); if ((typeof sDestination !== 'string') || (sDestination.length === 0)) { LRDFAULT("Missing parameter sDestination."); return; } if (window.location.search.indexOf(encodeURIComponent(sDestination)) !== -1) { if (!window.redirecturlvalidated) { LRDFAULT("Redirect destination found in current URL without calling lutilsRedirectionURLValidate. Redirecting from a URL parameter is dangerous, as a malcious user could specify a redirect to a fradulent site."); } } window.location = sDestination;}function lscriptCall(page, senddata, responseHandler) { LFTRACE(page); var AJAX = lscriptCreateAJAX(page); AJAX.onreadystatechange = function() { if (this.readyState === 4) { if (this.status === 200) { if (typeof responseHandler === 'function') { responseHandler(this.responseText); } } else if (this.status === 0) { LFDEBUG('Request failed or aborted. Status: 0'); } else if (this.status === 401) { lutilsRedirect('/login.html'); } else { LDEBUG("lscriptCall Failed.", this.status); } } }; AJAX.send(senddata);}function lscriptCallResultDiscard(page, senddata) { lscriptCall(page, senddata);}function ldebugRetrieveStack() { var stackRetriever = new Error(''); if (stackRetriever.stack) return stackRetriever.stack; return '';}function LRDFAULT(msg) { console.log('** LRDFAULT ' + msg); lscriptCallResultDiscard('/_fault', 'msg=' + encodeURIComponent(msg) + '&stack=' + ldebugRetrieveStack() + '&agent=' + encodeURIComponent(window.navigator.userAgent));}function lgetElementByIdSafe(id) { LFTRACE(); var el = document.getElementById(id); if (el !== null) return el; LRDFAULT("id " + id + " does not exist on page, empty element returned"); return document.createElement('div');}function lutilsGetElementByIdIfRequired(unknownElement) { LFTRACE(); return (typeof unknownElement !== 'string') ? unknownElement : lgetElementByIdSafe(unknownElement);}var glmodalActiveElements = [];var modalDiv;var gactiveModalOverlay;var glmodalKeyDownListener;function lmodaldivClose(div) { LFTRACE(); div = lutilsGetElementByIdIfRequired(div); if ((!gactiveModalOverlay) || (!div.overlay)) { LFTRACE('Trying to close ' + div.id + ' which was not opened by lmodaldivOpen'); return; } var bCloseOther = (!div.overlay.isSameNode(gactiveModalOverlay)); if (bCloseOther) { LFTRACE('Close the modal which appears behind the current modal'); } var eClosedModal = bCloseOther ? div.overlay : gactiveModalOverlay; if (lelementIsHidden(eClosedModal)) { LFTRACE('Trying to close ' + div.id + ' when it is not visible. Is this in error?'); return; } lelementDisplaySet(eClosedModal, 'none'); glmodalActiveElements.pop(); if (glmodalActiveElements.length === 0) { lelementDisplaySet(modalDiv, 'none'); lelementStyleSet(document.body, 'overflow-y', modalDiv.modalBodyPreOverflow); document.body.removeEventListener('keydown', glmodalKeyDownListener); glmodalKeyDownListener = null; } else { if (!bCloseOther) gactiveModalOverlay = glmodalActiveElements[glmodalActiveElements.length - 1].overlay; }}function lalertAddClosingButton(div, text, cb, primary) { LFTRACE(); ldialogAddButton(div, text, function() { lmodaldivClose(div); const eOverlay = div.overlay; if (eOverlay) lelementRemove(eOverlay); if (typeof cb === 'function') cb(); }, primary);}function lelementRemove(e) { if (!e) { LRDFAULT('The element you\'re trying to remove doesn\'t exist'); return; } if (!e.parentNode) { LRDFAULT('The parent element of what you\'re trying to remove can\'t be found'); return; } e.parentNode.removeChild(e);}var eMouseDownElement;function lmodaldivOpen(div, closeFunc, bPreventCloseByBackground) { LFTRACE(); div = lutilsGetElementByIdIfRequired(div); div.bPreventCloseByBackground = bPreventCloseByBackground; if (typeof glmodalActiveElements === 'undefined') { glmodalActiveElements = []; } for (var i = 0; i < glmodalActiveElements.length; i++) { if (glmodalActiveElements[i].isSameNode(div)) { LDEBUG("Trying to open a modal div that is already open!"); return; } } if (typeof modalDiv === 'undefined') { modalDiv = document.createElement('div'); modalDiv.id = 'modaldiv'; modalDiv.style.cssText = "display:none;position:fixed;z-index:60;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)"; document.body.appendChild(modalDiv); modalDiv.addEventListener('click', function(e) { if ((glmodalActiveElements.length > 0) && (e.target === this) && (eMouseDownElement === this)) { var element = glmodalActiveElements[glmodalActiveElements.length - 1]; if (element.bPreventCloseByBackground) return; if (typeof element.lwindow !== 'undefined') { element.lwindow.CloseCancel(); } else { element.closeFunc(element); } } }); modalDiv.addEventListener('mousedown', function(e) { eMouseDownElement = e.target; }); } div.onclick = ''; div.closeFunc = closeFunc || lmodaldivClose; gactiveModalOverlay = div.overlay; if (!gactiveModalOverlay) { gactiveModalOverlay = document.createElement('div'); lelementClassListAdd(gactiveModalOverlay, 'modal_overlay'); lelementChildAppend(gactiveModalOverlay, div); lelementChildAppend(modalDiv, gactiveModalOverlay); } if (!modalDiv.lastElementChild.isSameNode(gactiveModalOverlay)) modalDiv.lastElementChild.insertAdjacentElement('afterend', gactiveModalOverlay); lelementDisplaySet(div, 'block'); lelementDisplaySet(gactiveModalOverlay, 'block'); lelementDisplaySet(modalDiv, 'block'); div.overlay = gactiveModalOverlay; if (glmodalActiveElements.length === 0) { modalDiv.modalBodyPreOverflow = document.body.style.overflowY; lelementStyleSet(document.body, 'overflowY', 'hidden'); } glmodalActiveElements.push(div); if (glmodalKeyDownListener) document.body.removeEventListener('keydown', glmodalKeyDownListener); glmodalKeyDownListener = function() { var eActiveModal = glmodalActiveElements[glmodalActiveElements.length - 1]; var keyCode = event.which || event.keyCode; if (keyCode === 27) { if ((eActiveModal) && (!div.bPreventCloseByBackground)) eActiveModal.closeFunc(eActiveModal); } else if ((keyCode === 13) && (!event.shiftKey)) { if (eActiveModal) { if (eActiveModal.querySelector('form')) return; var eActive = document.activeElement; if (eActive) { if (eActive.tagName.toLowerCase() === 'textarea') return; if ((eActive.type === 'date') || (eActive.classList.contains('date-picker')) || (eActive.parentNode.classList.contains('datepicker'))) return; } var eSubmitBtn = eActiveModal.querySelector('.modal-submit'); if ((eSubmitBtn) && (!eSubmitBtn.disabled)) { eSubmitBtn.click(); event.preventDefault(); } } } if (glmodalActiveElements.length === 0) { document.body.removeEventListener('keydown', glmodalKeyDownListener); glmodalKeyDownListener = null; } }; document.body.addEventListener('keydown', glmodalKeyDownListener);}function lalertOkInfo(text, caption, textOk, callbackFuncOk) { LFTRACE(); textOk = textOk || 'OK'; var div = ldialogModalDivCreate(); ldialogCaptionSet(div, caption); if (text) ldialogAddStaticHTML(div, text); lalertAddClosingButton(div, textOk, callbackFuncOk, !0); lmodaldivOpen(div);}function ssutilsdemoScriptActionDenied(sDemoText, cbFuncOk) { LFTRACE(); if (!sDemoText) sDemoText = "This is a demo account. Changes will not be saved."; if (ssutilsdemoIsDemoAccess()) { lalertOkInfo(sDemoText, "Demo Account"); return; } lalertOkInfo("The action was denied by the server. Please reload the page.", "Update failed");}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lscriptCreateAJAX(page) { var AJAX; if (window.XMLHttpRequest) AJAX = new XMLHttpRequest(); else AJAX = new ActiveXObject('Microsoft.XMLHTTP'); AJAX.open('POST', page); AJAX.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); AJAX.setRequestHeader('X-AJAX', 'true'); return AJAX;}function lscriptCallErrorResult(page, senddata, responseHandler, errorHandler) { var AJAX = lscriptCreateAJAX(page); AJAX.onreadystatechange = function() { if (this.readyState === 4) { if (this.status === 200) { if (responseHandler !== undefined) responseHandler(this.responseText); } else if (errorHandler !== undefined) { errorHandler(this.responseText); } else { LFDEBUG("Failed"); } } }; AJAX.send(senddata);}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lalertOkInfo(text, caption, textOk, callbackFuncOk) { LFTRACE(); textOk = textOk || 'OK'; var div = ldialogModalDivCreate(); ldialogCaptionSet(div, caption); if (text) ldialogAddStaticHTML(div, text); lalertAddClosingButton(div, textOk, callbackFuncOk, !0); lmodaldivOpen(div);}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lalertOkCancel(text, caption, textOk, textCancel, callbackFuncOk, callbackFuncCancel) { LFTRACE(); textOk = textOk || "OK"; textCancel = textCancel || "Cancel"; var div = ldialogModalDivCreate(); ldialogCaptionSet(div, caption); if (text) ldialogAddStaticHTML(div, text); lalertAddClosingButton(div, textOk, callbackFuncOk, !0); lalertAddClosingButton(div, textCancel, callbackFuncCancel); lmodaldivOpen(div);}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lscriptCreateAJAX(page) { var AJAX; if (window.XMLHttpRequest) AJAX = new XMLHttpRequest(); else AJAX = new ActiveXObject('Microsoft.XMLHTTP'); AJAX.open('POST', page); AJAX.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); AJAX.setRequestHeader('X-AJAX', 'true'); return AJAX;}function lutilsRedirect(sDestination) { LFTRACE(); if ((typeof sDestination !== 'string') || (sDestination.length === 0)) { LRDFAULT("Missing parameter sDestination."); return; } if (window.location.search.indexOf(encodeURIComponent(sDestination)) !== -1) { if (!window.redirecturlvalidated) { LRDFAULT("Redirect destination found in current URL without calling lutilsRedirectionURLValidate. Redirecting from a URL parameter is dangerous, as a malcious user could specify a redirect to a fradulent site."); } } window.location = sDestination;}function lscriptCall(page, senddata, responseHandler) { LFTRACE(page); var AJAX = lscriptCreateAJAX(page); AJAX.onreadystatechange = function() { if (this.readyState === 4) { if (this.status === 200) { if (typeof responseHandler === 'function') { responseHandler(this.responseText); } } else if (this.status === 0) { LFDEBUG('Request failed or aborted. Status: 0'); } else if (this.status === 401) { lutilsRedirect('/login.html'); } else { LDEBUG("lscriptCall Failed.", this.status); } } }; AJAX.send(senddata);}function lscriptCallResultDiscard(page, senddata) { lscriptCall(page, senddata);}function LRDFAULT(msg) { console.log('** LRDFAULT ' + msg); lscriptCallResultDiscard('/_fault', 'msg=' + encodeURIComponent(msg) + '&stack=' + ldebugRetrieveStack() + '&agent=' + encodeURIComponent(window.navigator.userAgent));}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function ldebugErrorHandler(e) { var message = e.message; var line = "File: " + e.filename + " | Line#: " + e.lineno + " | Col#: " + e.colno; var agent = window.navigator.userAgent; var stack = ""; if (e.error.stack) { stack = e.error.stack; } var report = message + '| ' + line + '| User Agent: ' + agent + (stack ? '| Stack Trace: ' + stack : ''); console.log("** ldebugError " + report); lscriptCallResultDiscard('/_fault', 'msg=' + encodeURIComponent(message) + "&line=" + encodeURIComponent(line) + "&stack=" + encodeURIComponent(stack) + "&agent=" + encodeURIComponent(agent) );}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function ldebugErrorHandlerInstall() { window.addEventListener('error', ldebugErrorHandler);}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lutilsJSONParse(value) { LFTRACE(); try { return JSON.parse(value); } catch (e) { LFDEBUG(e); }}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lloccacheGet(sURI, sField, callback, expireTimeMS) { LFTRACE(); if (localStorage[sField] === undefined) { lscriptCallResultJSON(sURI, undefined, function(rd) { lloccacheResultHandler(rd, sField, callback); }); return; } callback(JSON.parse(localStorage[sField])); expireTimeMS = (expireTimeMS === undefined) ? 7200000 : expireTimeMS; if ((localStorage['_ts_' + sField] === undefined) || ((Date.now() - localStorage['_ts_' + sField]) > expireTimeMS) ) { lscriptCallResultJSON(sURI, undefined, function(rd) { if (JSON.stringify(rd) !== localStorage[sField]) { lloccacheResultHandler(rd, sField, callback); } else { localStorage['_ts_' + sField] = Date.now(); } }); }}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lloccacheResultHandler(rd, sField, cb) { LFTRACE(); if (rd.errorcode !== undefined) { if ((rd.errorcode >= 400) && (rd.errorcode <= 599)) { if (rd.errorredirect) { LFTRACE("Redirect code: " + rd.errorcode + ". Redirecting."); window.location.href = rd.errorredirect; } return; } if ((rd.errorcode >= 300) && (rd.errorcode <= 399)) { LFTRACE("Redirect code: " + rd.errorcode + ". Redirecting."); window.location.href = rd.errorredirect; return; } } localStorage[sField] = JSON.stringify(rd); localStorage['_ts_' + sField] = Date.now(); LFTRACE("key:" + sField + " Data: " + localStorage[sField]); if (typeof cb === 'function') cb(rd);}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lscriptCreateAJAX(page) { var AJAX; if (window.XMLHttpRequest) AJAX = new XMLHttpRequest(); else AJAX = new ActiveXObject('Microsoft.XMLHTTP'); AJAX.open('POST', page); AJAX.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); AJAX.setRequestHeader('X-AJAX', 'true'); return AJAX;}function lutilsRedirect(sDestination) { LFTRACE(); if ((typeof sDestination !== 'string') || (sDestination.length === 0)) { LRDFAULT("Missing parameter sDestination."); return; } if (window.location.search.indexOf(encodeURIComponent(sDestination)) !== -1) { if (!window.redirecturlvalidated) { LRDFAULT("Redirect destination found in current URL without calling lutilsRedirectionURLValidate. Redirecting from a URL parameter is dangerous, as a malcious user could specify a redirect to a fradulent site."); } } window.location = sDestination;}function lscriptCall(page, senddata, responseHandler) { LFTRACE(page); var AJAX = lscriptCreateAJAX(page); AJAX.onreadystatechange = function() { if (this.readyState === 4) { if (this.status === 200) { if (typeof responseHandler === 'function') { responseHandler(this.responseText); } } else if (this.status === 0) { LFDEBUG('Request failed or aborted. Status: 0'); } else if (this.status === 401) { lutilsRedirect('/login.html'); } else { LDEBUG("lscriptCall Failed.", this.status); } } }; AJAX.send(senddata);}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lscriptCallResultJSON(script, sd, cb) { lscriptCall(script, sd, function(rd) { if (!rd) { LFDEBUG('lscriptCallResultJSON: rd is not valid'); return; } if (typeof cb === 'function') cb(lutilsJSONParse(rd)); });}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lscriptCallResultJSONHandler(script, sd, cb, eh) { lscriptCallResultJSON(script, sd, function(rd) { _lscriptCallResultHandler(rd, cb, eh); });}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function ssutilsRedirect(sURL) { if ((sURL.indexOf('demoaccountadmin') === -1) && (sURL.indexOf('demoaccountagent') === -1)) { var bUrlNoParams = (sURL.indexOf('?') === -1); sURL += ssutilsdemoGetUrlParam(bUrlNoParams); } window.location = sURL;}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lscriptCreateAJAX(page) { var AJAX; if (window.XMLHttpRequest) AJAX = new XMLHttpRequest(); else AJAX = new ActiveXObject('Microsoft.XMLHTTP'); AJAX.open('POST', page); AJAX.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); AJAX.setRequestHeader('X-AJAX', 'true'); return AJAX;}function lutilsRedirect(sDestination) { LFTRACE(); if ((typeof sDestination !== 'string') || (sDestination.length === 0)) { LRDFAULT("Missing parameter sDestination."); return; } if (window.location.search.indexOf(encodeURIComponent(sDestination)) !== -1) { if (!window.redirecturlvalidated) { LRDFAULT("Redirect destination found in current URL without calling lutilsRedirectionURLValidate. Redirecting from a URL parameter is dangerous, as a malcious user could specify a redirect to a fradulent site."); } } window.location = sDestination;}function lscriptCall(page, senddata, responseHandler) { LFTRACE(page); var AJAX = lscriptCreateAJAX(page); AJAX.onreadystatechange = function() { if (this.readyState === 4) { if (this.status === 200) { if (typeof responseHandler === 'function') { responseHandler(this.responseText); } } else if (this.status === 0) { LFDEBUG('Request failed or aborted. Status: 0'); } else if (this.status === 401) { lutilsRedirect('/login.html'); } else { LDEBUG("lscriptCall Failed.", this.status); } } }; AJAX.send(senddata);}function lscriptCallResultDiscard(page, senddata) { lscriptCall(page, senddata);}function ldebugRetrieveStack() { var stackRetriever = new Error(''); if (stackRetriever.stack) return stackRetriever.stack; return '';}function LRDFAULT(msg) { console.log('** LRDFAULT ' + msg); lscriptCallResultDiscard('/_fault', 'msg=' + encodeURIComponent(msg) + '&stack=' + ldebugRetrieveStack() + '&agent=' + encodeURIComponent(window.navigator.userAgent));}function lgetElementByIdSafe(id) { LFTRACE(); var el = document.getElementById(id); if (el !== null) return el; LRDFAULT("id " + id + " does not exist on page, empty element returned"); return document.createElement('div');}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function ssutilsdemoGetUrlParam(bNoParams) { var demoParam = ''; if (window.location.search.indexOf('demoaccountadmin') >= 0) demoParam = 'demoaccountadmin'; else if (window.location.search.indexOf('demoaccountagent') >= 0) demoParam = 'demoaccountagent'; else { return ''; } return (bNoParams ? '?' : '&') + demoParam;}function ssutilsRedirect(sURL) { if ((sURL.indexOf('demoaccountadmin') === -1) && (sURL.indexOf('demoaccountagent') === -1)) { var bUrlNoParams = (sURL.indexOf('?') === -1); sURL += ssutilsdemoGetUrlParam(bUrlNoParams); } window.location = sURL;}function ssbaseredirectlink(sRedirectLink) { function ssbaseredirectlinkGo() { if (typeof sRedirectLink !== 'string') { LFDEBUG("Redirect link not provided"); return; } if (window.location.href.indexOf("signupfeedback") > 0) { var bUrlHasParameters = sRedirectLink.indexOf('?') >= 0; sRedirectLink += (bUrlHasParameters ? '&' : '?') + 'signupfeedback'; } ssutilsRedirect(sRedirectLink); } if (typeof gBaseRedirect !== 'object') { ssbaseredirectlinkGo(); return; } if (!gBaseRedirect.IsValid()) { LFDEBUG("gBaseRedirect functions are not valid."); ssbaseredirectlinkGo(); return; } if (gBaseRedirect.IsDirty()) { gBaseRedirect.SaveLink(sRedirectLink); if (typeof ConfirmOKCancel !== "function") return; ConfirmOKCancel(gBaseRedirect.sWarnCaption , gBaseRedirect.sWarnMessage , "Save" , "Discard" , function () { gBaseRedirect.Save(gBaseRedirect.Redirect); } , function () { gBaseRedirect.Redirect(); } ); } else { ssbaseredirectlinkGo(); }}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function ssutilsGetDateTimeLocal(sDateTimeUTC) { var bDateTime = (sDateTimeUTC.length > 10); var sDateIso = bDateTime ? (sDateTimeUTC.substr(0, 10) + 'T' + sDateTimeUTC.substr(11, 8) +'.000Z') : sDateTimeUTC; if (isNaN(Date.parse(sDateIso))) return sDateTimeUTC; var dt = new Date(sDateIso); return bDateTime ? dt.toLocaleString() : dt.toLocaleDateString();}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function ssutilsGetDisplayDateTimeLocalSafeTimeWrap(sDateTimeUTC) { var sDateTime = ssutilsGetDateTimeLocal(sDateTimeUTC); var iLength = sDateTime.length; if ((sDateTime.substring(iLength - 3) === " AM") || (sDateTime.substring(iLength - 3) === " PM")) { sDateTime = sDateTime.substring(0, iLength - 3) + " " + sDateTime.substring(iLength - 2); } return sDateTime;}function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function ssutilsGetDisplayTimeInterval(iIntervalSec) { var iDays = parseInt(iIntervalSec / 86400); var iSeconds = iIntervalSec - (iDays * 86400); var sInterval = ''; if (iDays != 0) sInterval = iDays + ' ' + (iDays == 1 ? "day" : "days") + ' '; sInterval += new Date(iSeconds * 1000).toISOString().substr(11, 8); return sInterval; }function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}function lutilsUserAnalyticsLHTMLIncludeScript() { LFTRACE(); lloccacheGet('/lloccacheloguseranalytics', 'lAnalyticsLog', function(rd) { if (rd.logUserAnalytics) { var script = document.createElement("script"); script.src = "/useranalytics.js"; document.body.appendChild(script); } }, 21600000); }function LFTRACE(trace){if(!LFTRACE.caller)console.log(!trace?'':trace);else{if(!LFTRACE.caller.name)LFTRACE.caller.name=LFTRACE.caller.toString().substring(0,LFTRACE.caller.toString().indexOf('{')-1);if(trace)console.log(LFTRACE.caller.name+': '+trace);else console.log(LFTRACE.caller.name)}};function LTRACE(trace,addition){addition?console.log(trace,addition):console.log(trace)}function LFDEBUG(trace){if(!LFDEBUG.caller)console.log(!trace?'':trace);else{if(!LFDEBUG.caller.name)LFDEBUG.caller.name=LFDEBUG.caller.toString().substring(0,LFDEBUG.caller.toString().indexOf('{')-1);if(trace)console.error(LFDEBUG.caller.name+': '+trace);else console.error(LFDEBUG.caller.name)}};function LDEBUG(trace,addition){addition?console.error(trace,addition):console.error(trace)};function ASSERT(trace){console.error(trace)}ldebugErrorHandlerInstall();