var ajax=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript gives us Conditional compilation, we can cope with old IE versions.
// and security blocked creation of the objects.
 try {
  ajax = new ActiveXObject("Msxml2.XMLHTTP");
 } catch (e) {
  try {
   ajax = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (E) {
   ajax = false;
  }
 }
@end @*/
if (!ajax && typeof XMLHttpRequest!='undefined') {
  ajax = new XMLHttpRequest();
}

function getMyHTML(serverPage, objID) {
  if((serverPage.indexOf("http://www.ennovy.org/")!=0)) return;
  var element = document.getElementById(objID);
  var busy = document.getElementById('busy');
  ajax.open("GET", serverPage);
  ajax.onreadystatechange = function() {
    if (ajax.readyState == 4 && ajax.status == 200) {
    	if (busy != null) { busy.style.display = 'none'; }
      element.innerHTML = ajax.responseText;
    }
    if (ajax.readyState >= 0 && ajax.readyState < 4 ) {
      if (busy != null) { busy.style.display = 'block';	}
    }
  }
  ajax.send(null);
}