var http;

			
function getANewQuote()
{	d=new Date();
	if (window.XMLHttpRequest)
		http = new XMLHttpRequest();
	else
		http=new ActiveXObject("Microsoft.XMLHTTP");
	http.open ('get','comment.asp?' + d.getTime());
	http.onreadystatechange = handleResponse;
	http.send(null);
}
			
function handleResponse()
{	if (http.readyState == 4) {
		document.getElementById('T1').innerHTML=http.responseText;
	}
}
			
document.write ('<DIV CLASS="testimonial" ID="T1"></DIV>');
getANewQuote();

