function View_Comment()
{	
	var xmlhttp=ajax_object();
	var comment=document.getElementById('say');
	if(!xmlhttp)
	{
		comment.innerHTML="Script Not Supported By Your Browser";
	}
	else
	{
		xmlhttp.onreadystatechange=function()
		{
			if(xmlhttp.readyState==4)
			{
				if(xmlhttp.status==200)
				{
					comment.innerHTML=xmlhttp.responseText;
				}
				else
				{
					comment.innerHTML="Error Number: " + xmlhttp.status;
					
				}
			}
		}
		ur='say.php?id=' + Math.random();
		xmlhttp.open("GET",ur,true);
		xmlhttp.send(null);
		setTimeout('View_Comment()',10000);
	}
}
