//***********************************************************************************//
//Ajax 《 模版編號：template_id 列入追蹤清單 》的資料 Function;
//***********************************************************************************//
function getAdd_Trace(template_id)
{
// template_id    模版 ID;

   var url       = '/w_template/w_order/ajax_lib/aj_S1_Add_Trace.php';
   var postStr   = 'template_id=' + template_id + '&parm=' + new Date().getTime();
   var XmlHR_Obj = InitXMLHttpRequestObject();

//   obj.innerHTML = '<font color="#FF0000">Loading..........  Please Wait!!</font>';

   if(XmlHR_Obj)
   {
      XmlHR_Obj.open('POST', url, true);
      XmlHR_Obj.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
      XmlHR_Obj.send(postStr);

      XmlHR_Obj.onreadystatechange = function()
      {
       if(XmlHR_Obj.readyState == 4 && XmlHR_Obj.status == 200) {
          alert("模版編號："+ template_id + "列入追蹤清單!!");
          }

      }//End of XmlHR_Obj.onreadystatechange = function();

   }//End of if(XmlHR_Obj);

}//End of function getAdd_Trace(template_id);




//***********************************************************************************//
//END
//***********************************************************************************//