function handleHttpResponseRating() {
		if (http.readyState == 4) {
			var resp = http.responseText.split("#");
			if(resp[0]=="Error")
			{
			document.getElementById("ratemsg").innerHTML = "<b>"+resp[1]+"</b>";
			}
			else
			{
			document.getElementById("ratemsg").innerHTML = "<b>"+resp[0]+"</b>";
			}
		}
	}

   function handleHttpResponseTrack() {
		if (http.readyState == 4) {
		//	document.getElementById("stat").innerHTML = http.responseText;
			
		}
	}

	function handleHttpResponseComment() {
		if (http.readyState == 4) {
			var resp = http.responseText.split("#");
			document.getElementById("commentbtn").style.visibility = "visible";
						
			if(resp[0]=="Error")
			{
			document.getElementById("postcomment").innerHTML = resp[1];	
			}
			else
			{
			document.getElementById("divcomment").innerHTML =resp[0];
			document.getElementById("postcomment").innerHTML = ""
			}
		}
	}


	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
