function notifyXMLErrorCode(url) {var xml = new ActiveXObject("MSXML2.DOMDocument.4.0");xml.async = false;xml.load(url);if (xml.parseError.errorCode != 0) {var errorText = 'Xml Load Error:'+xml.parseError.reason +' (unable to download the data from the url '+ url +')'var loc =window.location.toString().toLowerCase();domainURL= loc.substring(0,loc.indexOf('.nsf')) +'.nsf/notify+XML+Errors?OpenAgent'makeRequest(domainURL +'&Id1=JobListLoadError&Id2=' +errorText )}}function notifyXMLDataError(errorText) {var loc =window.location.toString().toLowerCase();domainURL= loc.substring(0,loc.indexOf('.nsf')) +'.nsf/notify+XML+Errors?OpenAgent'makeRequest(domainURL +'&Id1=JobListDataError&Id2=' +errorText )}function notifyJobDetailsErrorCode(url) {var xml = new ActiveXObject("MSXML2.DOMDocument.4.0");xml.async = false;xml.load(url);if (xml.parseError.errorCode != 0) {var errorText = 'Xml Job Details Load Error:'+xml.parseError.reason +' (unable to download the data from the url '+ url +')'var loc =window.location.toString().toLowerCase();domainURL= loc.substring(0,loc.indexOf('.nsf')) +'.nsf/notify+XML+Errors?OpenAgent'makeRequest(domainURL +'&Id1=JobDetailsLoadError&Id2=' +errorText )}}function notifyJobDetailsDataError(errorText) {var loc =window.location.toString().toLowerCase();domainURL= loc.substring(0,loc.indexOf('.nsf')) +'.nsf/notify+XML+Errors?OpenAgent'makeRequest(domainURL +'&Id1=JobDetailsDataError&Id2=' +errorText )}function makeRequest(url) {        http_request = false;        if (window.XMLHttpRequest) {             http_request = new XMLHttpRequest();            if (http_request.overrideMimeType) {                http_request.overrideMimeType('text/xml');                           }        } else if (window.ActiveXObject) { // IE            try {                http_request = new ActiveXObject("Msxml2.XMLHTTP");            } catch (e) {                try {                    http_request = new ActiveXObject("Microsoft.XMLHTTP");                } catch (e) {}            }        }        if (!http_request) {                     return false;        }        http_request.onreadystatechange = alertContents;        http_request.open('GET', url, true);        http_request.send(null);    }    function alertContents() {        if (http_request.readyState == 4) {            if (http_request.status == 200) {               responseText =http_request.responseText;}            else { }         }      }