
function ahahother(urlother, targetother) {
	document.getElementById(targetother).innerHTML='<img src="images/animated_progress.gif">';
  if (window.XMLHttpRequest) {
    req = new XMLHttpRequest();
  } else if (window.ActiveXObject) {
    req = new ActiveXObject("Microsoft.XMLHTTP");
  }
  if (req != undefined) {
    req.onreadystatechange = function() {ahahDoneother(urlother, targetother);};
    req.open("GET", urlother, true);
    req.send("");
  }
}  

function ahahDoneother(urlother, targetother) {
  if (req.readyState == 4) { // only if req is "loaded"
    if (req.status == 200) { // only if "OK"
      document.getElementById(targetother).innerHTML = req.responseText;
    } else {
      document.getElementById(targetother).innerHTML="";
    }
  }
}

function loadother(nameother, divother) {
	ahahother(nameother,divother);
	return false;
}

