// AJax


   function ajaxobj(){
     var xmlHttp;
      try{ 
        xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
      }
      catch (e){  
      try{
        xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");  // Internet Explorer 6+
      }
      catch (e){
        try{
          xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); // Internet Explorer 5.5
          }
        catch (e){
            xmlHttp = false;
           // return false;
          }
        }
      }
      return xmlHttp;
  }  // ajaxobj
  

