Ajax + url + firefox

Hi All,

I am having a problem parsing the content from Firefox .Although I get the URL but I am not able to get the content since it always come to Null in Firefox . Any ideas to get this working will be highly appreciated.

Below is the code I am using –

function getURLContent(URL){
oxmlhttp = null;
try{
oxmlhttp = new XMLHttpRequest();
alert(‘oxmlhttp’ + oxmlhttp);
oxmlhttp.overrideMimeType(“text/xml”);
alert(‘For Firefox and Google Chrome’);
}
catch(e){
try{
oxmlhttp = new ActiveXObject(“Msxml2.XMLHTTP”);
alert(‘oxmlhttp’ + oxmlhttp);
alert(‘For Internet Explorer’);
}
catch(e){
return null;
}
}
if(!oxmlhttp) return null;
try{
oxmlhttp.onreadystatechange=statechanged;
oxmlhttp.setRequestHeader(“content-length”, “0”);
oxmlhttp.open(‘get’,URL,true);
oxmlhttp.setRequestHeader(‘Content-Type’, ‘application/x-www-form-urlencoded’);
alert("Trying to get the URL " + URL);
alert(‘oxmlhttp’ + oxmlhttp);

   oxmlhttp.send(URL);
}
catch(e){
   return null;
}
return oxmlhttp.responseText;

}

The site I am trying to access is http://chicoer.mycapture.com/datafeeds/11847.js