﻿// JavaScript Document
function axBody(id, url){
			xmlHttp = new newXmlHttp();
			xmlHttp.open("GET", url, true);
			xmlHttp.onreadystatechange=function(){ 
				if(xmlHttp.readyState == 4){
					if(xmlHttp.status == 200){
						var result = xmlHttp.responseText;
						document.getElementById(id).innerHTML=result;
					}
				}
			}
		xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 
		xmlHttp.send(null);
}
