function GetData(URL) {
var http = new ActiveXObject("Microsoft.XMLHTTP");
http.open("GET",URL,false);
http.send(null);
document.getElementById("nr").innerHTML=http.responseText;
}
function GetData(URL) {
var http = new ActiveXObject("Microsoft.XMLHTTP");
http.open("GET",URL,false);
http.send(null);
document.getElementById("nr").innerHTML=http.responseText;
}