function uutiset()
{
	if (window.XMLHttpRequest)
	{
		xmlhttp=new XMLHttpRequest();
	}
	else
	{
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
  
	xmlhttp.open("GET","http://www.belleviews.fi/uutiset.php?r=" + Math.random(),true);
	xmlhttp.send();
  
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
			document.getElementById("text_container").innerHTML=xmlhttp.responseText;
		}
	}

}
