<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">//Scrollers
var browser = {
        isIe: function () {
            return navigator.appVersion.indexOf("MSIE") != -1;
        },
        navigator: navigator.appVersion,
        getVersion: function() {
            var version = 999; // we assume a sane browser
            if (navigator.appVersion.indexOf("MSIE") != -1)
                // bah, IE again, lets downgrade versioon number
                version = parseFloat(navigator.appVersion.split("MSIE")[1]);
            return version;
        }
};

// check if in compatibility mode
// https://github.com/Gavin-Paolucci-Kleinow/ie-truth

function IeVersion() {
    //Set defaults
    var value = {
		IsIE: false,
		IsEdge: false,
		EdgeHtmlVersion: 0,
		TrueVersion: 0,
		ActingVersion: 0,
		CompatibilityMode: false
	};

	//Try to find the Trident version number
	var trident = navigator.userAgent.match(/Trident\/(\d+)/);
	if (trident) {
		value.IsIE = true;
		//Convert from the Trident version number to the IE version number
		value.TrueVersion = parseInt(trident[1], 10) + 4;
	}

	//Try to find the MSIE number
	var msie = navigator.userAgent.match(/MSIE (\d+)/);
	if (msie) {
	    value.IsIE = true;
        	//Find the IE version number from the user agent string
		value.ActingVersion = parseInt(msie[1]);
	} else {
		//Must be IE 11 in "edge" mode
		value.ActingVersion = value.TrueVersion;
	}

	//If we have both a Trident and MSIE version number, see if they're different
	if (value.IsIE &amp;&amp; value.TrueVersion &gt; 0 &amp;&amp; value.ActingVersion &gt; 0) {
		//In compatibility mode if the trident number doesn't match up with the MSIE number
		value.CompatibilityMode = value.TrueVersion != value.ActingVersion;
	}

	//Try to find Edge and the EdgeHTML vesion number
	var edge = navigator.userAgent.match(/Edge\/(\d+\.\d+)$/);
	if (edge)
	{
		value.IsEdge = true;
		value.EdgeHtmlVersion = edge[1];
	}
	return value;
}

// var modalg = document.getElementById("IEModal");
// var spang = document.getElementsByClassName("closediv")[1];
var IE = IeVersion();
// modal.style.display = "block";
// console.log(IE);

// When the user clicks on &lt;span&gt; (x), close the modal
// spang.onclick = function() {
  // modalg.style.display = "none";
// }

// When the user clicks anywhere outside of the modal, close it
// window.onclick = function(event) {
  // if (event.target == modalg) {
    // modalg.style.display = "none";
  // }
// }

if (browser.isIe() &amp;&amp; (browser.getVersion() &lt; 11 || IE.CompatibilityMode)) {
	// if (browser.getVersion() &lt;= 7 || IE.ActingVersion &lt;= 7) {
		// $("body").empty();  
		// $("body").append(modalg); 
		// alert("You are currently using Internet Explorer "+browser.getVersion()+" or are viewing the site in Compatibility View. Please disable Compatibility View or upgrade Internet Explorer to view this page.");
	// } else {
		// modalg.style.display = "block";
	// }
	alert("You are currently using Internet Explorer "+browser.getVersion()+" or are viewing the site in Compatibility View. Please disable Compatibility View or upgrade Internet Explorer for a better experience. The page cannot be viewed in IE7 or IE7 Compatibility Mode.");
	console.log(IE);
};
</pre></body></html>