	function getHttp()
	{
		var oT = false;
		try {
			oT = new ActiveXObject('Msxml2.XMLHTTP');
			} catch(e) {
		try {
			oT = new ActiveXObject('Microsoft.XMLHTTP');
			} catch(e) {
				oT = new XMLHttpRequest();
			}
		}
		return oT;
	}
	function myAJAX(id,p)
	{
		delete HR;
		var HR = getHttp();
		HR.onreadystatechange = function() {processAJAX();};
		HR.open("GET", "Comment.asp?id="+id+"&p="+p, true);
		HR.setRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=gb2312");
		HR.send("");

		function processAJAX()
		{
			if (HR.readyState == 4)
			{
				if (HR.status == 200)
				{	
					document.getElementById("comment").innerHTML = HR.responseText;
				}
				else
				{
					document.getElementById("comment").innerHTML="<p>ÍøÒ³´íÎó: " + HR.statusText +"<\/p>";
				}
				delete HR;
				HR=null;
			}
		}
	
	}
