var _baseUrl = "http://www.jenniferpollock.ca/"
function jsInclude(path,targetId){
	var el = document.getElementById(targetId)
	me = this;
	me.callback = function(text,status,xml){
		if(status=='200'){
			el.innerHTML = text;
		}else{
			el.innerHTML = "jsInclude error: " +status +" : " +text
		}
	}
	var ajax = new ajaxObject(_baseUrl+path,me.callback)
	var send = ""
	ajax.update(send,"GET")
}
