var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
  {// IE7, Firefox, Opera icin kod
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {// IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
if (xmlhttp!=null)
  {
  xmlhttp.onreadystatechange=state_Change;
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);
  }
else
  {
  alert("Your browser does not support XMLHTTP.");
  }
}
function state_Change()
{
if (xmlhttp.readyState==4)
  {
  if (xmlhttp.status==200)
    {
		if(document.getElementById('A4')) {
			document.getElementById('A4').innerHTML=xmlhttp.responseText;
		}
    }
  else
    {
    alert("Bir sorun oluştu." + xmlhttp.statusText);
    }
  }
}

//Floating Siparis Hatti Kodu
