      <!--
      // Get the HTTP Object
      function getHTTPObject(){
      if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
      else if (window.XMLHttpRequest) return new XMLHttpRequest();
      else {
      alert("Your browser does not support AJAX.");
      return null;
      }
      }
      // Change the value of the outputText field
      function setOutput(){
      if(httpObject.readyState == 4){
	  document.getElementById("employe_detail").innerHTML = httpObject.responseText;
      }
       
      }
      
      // Implement business logic
      function doWork(id, preview, head, subhead, desc){
      httpObject = getHTTPObject();
      if (httpObject != null) {
      var url="modules/mod_ajaxintroduce/list.php?title="+id;
      url=url+"&preview="+preview;
      url=url+"&heading="+head;
      url=url+"&subhead="+subhead;
      url=url+"&desc="+desc;
      httpObject.open("GET", url, true);
      httpObject.onreadystatechange = setOutput;
      httpObject.send(null);
      }
      }
              
      var httpObject = null;
      //-->

