
function setFiltersSession(sDDStatus) {
	var httpRequestDD = null;

	if (window.XMLHttpRequest) { // Mozilla, Safari, ...
		httpRequestDD = new XMLHttpRequest();
		if (httpRequestDD.overrideMimeType) {
			httpRequestDD.overrideMimeType('text/xml');
		}
	} 
	else if (window.ActiveXObject) { // IE
		try {
			httpRequestDD = new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (e) {
			try {
				httpRequestDD = new ActiveXObject("Microsoft.XMLHTTP");
			} 
			catch (e) {}
		}
	}

	if (!httpRequestDD) {
		//didn't work
		return false;
	}
	httpRequestDD.onreadystatechange = function() { alertContents(httpRequestDD); };
	httpRequestDD.open('GET', 'setFiltersDD.asp?status=' + sDDStatus , true);
	httpRequestDD.send('');
}

function setToolsSession(sDDStatus) {
	var httpRequestDD = null;

	if (window.XMLHttpRequest) { // Mozilla, Safari, ...
		httpRequestDD = new XMLHttpRequest();
		if (httpRequestDD.overrideMimeType) {
			httpRequestDD.overrideMimeType('text/xml');
		}
	} 
	else if (window.ActiveXObject) { // IE
		try {
			httpRequestDD = new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (e) {
			try {
				httpRequestDD = new ActiveXObject("Microsoft.XMLHTTP");
			} 
			catch (e) {}
		}
	}

	if (!httpRequestDD) {
		//didn't work
		return false;
	}
	httpRequestDD.onreadystatechange = function() { alertContents(httpRequestDD); };
	httpRequestDD.open('GET', 'setToolsDD.asp?status=' + sDDStatus , true);
	httpRequestDD.send('');
}

function alertContents(httpRequestDD) {
	if (httpRequestDD.readyState == 4) {
		//
		if (httpRequestDD.status == 200) {
			//
		}
		
	}

}
