function handleHttpResponse(target)
{
  if (http.readyState == 4) {
    document.getElementById(target).innerHTML = http.responseText;
    
  }
}
