function Buat()
{
	try
	{
		xhr=new ActiveXObject("Microsoft.XMLHTTP");
	}catch(e)
	{
		try
		{
			xhr=new XMLHttpRequest();
		}catch(e2)
		{
			alert('error ajax');
		}
	}
}

