function AjaxSample1() {  var http = false;  try {    http = new ActiveXObject("Microsoft.XMLHTTP");  } catch (e) {    http = false;  }  if (!http && typeof XMLHttpRequest!='undefined') {    http = new XMLHttpRequest();  }  if (http) {    http.open('GET', '/whatsnew/info.html');    http.onreadystatechange = function() {      if (http.readyState == 4 && http.status == 200) {        var newsinfo_cojp = document.getElementById('newsinfo_cojp');        newsinfo_cojp.innerHTML=http.responseText;      }    }    http.send(null);  }}