// browser check in the context of a non-production web server
	function browserCheck() {
		if (document.getElementById) {
			browserType	= "isSC";
		} else if (document.all) {
			browserType	= "isOIE";
		} else {
			browserType = "isONN";
		}
	/*
		if (document.layers) {
			isONN = true;
			browserType = "isONN";
		} else if (document.getElementById) {
			isNEW = true;
			browserType = "isSC";
		} else if (document.all) {
			isOIE = true;
			browserType = "isOIE";
		} else {
			browserType = "isONN";
		}
	*/
		var replaceString = new String("?browserType=" + browserType);
		window.document.location.replace(replaceString);
	}
// it runs the function after it has been defined
	browserCheck();


