To:function xml_handler () {
if (window.event) {
xml_object = new ActiveXObject("Microsoft.XMLHTTP");
} else {
xml_object = new XMLHttpRequest();
}
return xml_object;
}
function xml_handler () {
if(browser == "Microsoft Internet Explorer"){
xml_object = new ActiveXObject("Microsoft.XMLHTTP");
} else {
xml_object = new XMLHttpRequest();
}
return xml_object;
}

