// JavaScript Document
var env = "";
var thisLocation = location.host.toLowerCase();
if (thisLocation.indexOf("test.") > -1 || thisLocation.indexOf("10.1.1.22") > -1 || thisLocation.indexOf("newdh.") > -1) {
	env = "test";
} else if (thisLocation.indexOf("dev.") > -1) {
	env = "development";
} else if (thisLocation.indexOf("www.") > -1) {
	env = "production";
} else {
	env = "";
}