function XMLAJAX(request, response)
{
	//prompt('AJAX Request', request);
    var xmlhttp_object;
    try{xmlhttp_object=new XMLHttpRequest();}catch(e){
    try{xmlhttp_object=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){
    try{xmlhttp_object=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){
    xmlhttp_object=false;
    }//try{ajax_object=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){ 
    }//try{ajax_object=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){
    }//try{ajax_object=new XMLHttpRequest();}catch(e){
    xmlhttp_object.onreadystatechange=function(){
    if(xmlhttp_object.readyState==4){
    response(xmlhttp_object.responseText);
    }//if(xmlhttp_object.readyState==4){
    }//xmlhttp_object.onreadystatechange=function(){
    xmlhttp_object.open("GET", request, true);
    xmlhttp_object.send(null);
}