Your getAjaxObject() method is clearly bogus. You first try to use new XMLHttpRequest(); which succeeds in every browser Opera,FF,IE7+,Safari,Chrome.
But then you don't return your xmlHttp variable but continue and try new ActiveXObject("Msxml2.XMLHTTP"); which clearly will fail in all browsers except IE6+. Which means in every browser other then IE (and IE < v6) your getAjaxObject() method will always fail and return false.
Use this version instead
function getAjaxObject() {
var xmlHttp = null;
try {
//FF, Opera, Safari, Chrome, IE7+
xmlHttp = new XMLHttpRequest();
} catch(e) {
try {
//IE6+
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
try {
//IE5+
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
xmlHttp = null;
}
}
}
return xmlHttp;
}