兄が書いたコードは以前は機能していましたが、誤って変更したと思います。おそらく、兄がXMLデータを返さない理由がわかるでしょう。
function CheckFromTo(From,To)
{
//alert(From + "," + To);
var xmlHttp = null;
var Url = "http://www.fpl.co.il/bo/info/CheckFromTo.aspx?FROM=" + From + "&TO=" + To + "";
xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = ProcessRequest;
xmlHttp.open( "GET", Url, true );
xmlHttp.send(null);
return (ProcessRequest());
function ProcessRequest()
{
if ( xmlHttp.readyState == 4 && xmlHttp.status == 200 )
{
var response = xmlHttp.responseText;
return response;
}
}
}