
/* --- Global Variables --- */

var server_root = "http://www.goy.com.au/";
var content_path = "/";
var footer_path = "footer.html";
var footer_obj = "footer";

/* --- Global Variables --- */

/* --- Build Footer using Ajax Functions --- */

var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
	http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
	http = new XMLHttpRequest();
}

function buildFooter() {
	http.abort();
	http.open("GET", footer_path, true);
	http.onreadystatechange=function() {
		if(http.readyState == 4) {
			document.getElementById(footer_obj).innerHTML = http.responseText;
		}
	}
	http.send(null);
}

/* --- Build Footer using Ajax Functions --- */