-
Notifications
You must be signed in to change notification settings - Fork 9
/
reporting.js
50 lines (47 loc) · 1006 Bytes
/
reporting.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
function reporting(ORDERID,RADID)
{
var arrive;
var ID;
var TYPE;
var IDD = "ID=";
var AAND = "&";
var HHN = "HN=";
var TTYPE = "TYPE=";
try
{
// Firefox, Opera 8.0+, Safari
arrive=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
arrive=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
arrive=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
alert("Your browser does not support AJAX!");
return false;
}
}
}
arrive.onreadystatechange=function()
{
if(arrive.readyState==4)
{
// var resultarea = document.getElementById(ID);
// resultarea.innerHTML = arrive.responseText;
}
}
//req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=tis-620"); // set Header
arrive.open("GET","dictate.php?"+IDD+ID+AAND+TTYPE+TYPE+AAND+Math.random(),true);
arrive.send(null);
}
<!-- //////////////////////////// Function 2 ----------------------->