var xmlHttp9

function mias()
{ 
xmlHttp9=GetXmlHttpObject();
if (xmlHttp9==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url9="mias.asp";
xmlHttp9.onreadystatechange=stateChanged9;
xmlHttp9.open("GET",url9,true);
xmlHttp9.send(null);


}

function stateChanged9() 
{ 
if (xmlHttp9.readyState==4)
{ 
document.getElementById("miaout").innerHTML=xmlHttp9.responseText;
}
}
