function show_just_footer() { 
  xmlHttp=GetXmlHttpObject();
  if (xmlHttp==null) {
    alert ("Your browser does not support AJAX!");
    return;
  } 
  var url="liquid_assets_footer.html";
  xmlHttp.onreadystatechange=show_footer_only;
  xmlHttp.open("GET",url,true);
  xmlHttp.send(null);
}

function show_footer_only() {
  if (xmlHttp.readyState==4) { 
    document.getElementById("la_footer").innerHTML=xmlHttp.responseText;
  }
}

function show_la_footer() { 
  xmlHttp=GetXmlHttpObject();
  if (xmlHttp==null) {
    alert ("Your browser does not support AJAX!");
    return;
  } 
  var url="liquid_assets_footer.html";
  xmlHttp.onreadystatechange=show_footer;
  xmlHttp.open("GET",url,true);
  xmlHttp.send(null);
}

function show_footer() {
  if (xmlHttp.readyState==4) { 
    document.getElementById("la_footer").innerHTML=xmlHttp.responseText;
	show_la_sidebar();
  }
}

function show_la_sidebar() { 
  xmlHttp=GetXmlHttpObject();
  if (xmlHttp==null) {
    alert ("Your browser does not support AJAX!");
    return;
  } 
  var url="liquid_assets_sidebar.html";
  xmlHttp.onreadystatechange=show_sidebarr;
  xmlHttp.open("GET",url,true);
  xmlHttp.send(null);
}

function show_sidebarr() {
  if (xmlHttp.readyState==4) { 
    document.getElementById("la_sidebar").innerHTML=xmlHttp.responseText;
  }
}

function GetXmlHttpObject() {
  var xmlHttp=null;
  try {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
  } catch (e) {
    // Internet Explorer
    try {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
  return xmlHttp;
}

