function loadleftDoc()
	{var xmlhttp;
		if (window.XMLHttpRequest)
			{xmlhttp=new XMLHttpRequest(); /*code for IE7+, Firefox, Chrome, Opera, Safari*/}
		else {xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); /*code for IE6, IE5*/}
				xmlhttp.onreadystatechange=function()
  				{if (xmlhttp.readyState==4 && xmlhttp.status==200)
    				{document.getElementById("leftside").innerHTML=xmlhttp.responseText;}
  				}
				xmlhttp.open("GET","aawleftcol.html",true);
				xmlhttp.send();
	}

function loadmenuDoc()
	{var xmlhttp;
		if (window.XMLHttpRequest)
			{xmlhttp=new XMLHttpRequest(); /*code for IE7+, Firefox, Chrome, Opera, Safari*/}
		else {xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); /*code for IE6, IE5*/}
				xmlhttp.onreadystatechange=function()
  				{if (xmlhttp.readyState==4 && xmlhttp.status==200)
    				{document.getElementById("menutop").innerHTML=xmlhttp.responseText;}
  				}
				xmlhttp.open("GET","aawtopmenu.html",true);
				xmlhttp.send();
	}
	
function loadrightDoc()
	{var xmlhttp;
		if (window.XMLHttpRequest)
			{xmlhttp=new XMLHttpRequest(); /*code for IE7+, Firefox, Chrome, Opera, Safari*/}
		else {xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); /*code for IE6, IE5*/}
				xmlhttp.onreadystatechange=function()
  				{if (xmlhttp.readyState==4 && xmlhttp.status==200)
    				{document.getElementById("rightside").innerHTML=xmlhttp.responseText;}
  				}
				xmlhttp.open("GET","aawrightcol.html",true);
				xmlhttp.send();
	}
	
function loadfootDoc()
	{var xmlhttp;
		if (window.XMLHttpRequest)
			{xmlhttp=new XMLHttpRequest(); /*code for IE7+, Firefox, Chrome, Opera, Safari*/}
		else {xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); /*code for IE6, IE5*/}
				xmlhttp.onreadystatechange=function()
  				{if (xmlhttp.readyState==4 && xmlhttp.status==200)
    				{document.getElementById("foot").innerHTML=xmlhttp.responseText;}
  				}
				xmlhttp.open("GET","aawfootrow.html",true);
				xmlhttp.send();
	}
	

