subject_id1 = '';
subject_id2 = '';
function handleHttpResponse() {
	if ((http.readyState == 4) && (subject_id1 != '')) {
		document.getElementById(subject_id1).innerHTML = http.responseText;
	}
}
function handleHttpResponse2() {
	if ((http.readyState == 4) && (subject_id1 != '')) {
		res = http.responseText;
		if (res != '') {
			ans = res.split( '|');
			document.getElementById(subject_id1).innerHTML = ans[0];
			hh1 = document.getElementById("tmovie");
			hh1.style.backgroundColor = ans[1];
		}
	}
}
function handleHttpResponse3() {
	if ((http.readyState == 4) && (subject_id1 != '')) {
		res = http.responseText;
		if (res != '') {
			ans = res.split( '|');
			document.getElementById(subject_id1).innerHTML = ans[0];
			if (subject_id2 != '') {
				document.getElementById(subject_id2).innerHTML = ans[1];
			}
		}
	}
}

function getHTTPObject() {
	var xmlhttp;
	/*@cc_on
	@if (@_jscript_version >= 5)
		try {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (E) {
				xmlhttp = false;
			}
		}
	@else
	xmlhttp = false;
	@end @*/
	if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
		try { xmlhttp = new XMLHttpRequest(); } catch (e) { xmlhttp = false; }
	}
	return xmlhttp;
}
var http = getHTTPObject(); // We create the HTTP Object
