var objekxhr;

function ambildata(namaFile,Tempat)
{
buatxhr();
objekxhr.open("GET",namaFile, true);
objekxhr.send(null);
objekxhr.onreadystatechange=function()
{
document.getElementById(Tempat).innerHTML = null;
document.getElementById(Tempat).innerHTML = objekxhr.responseText;
}
}

function buatxhr()
{
if (window.ActiveXObject)
	{
	objekxhr = new ActiveXObject("Microsoft.XMLHTTP");
	}
else if (window.XMLHttpRequest)
	{
	objekxhr=new XMLHttpRequest();
	}
else
	{
	alert("Tidak support");
	}
}


