// JavaScript Document
	xmlhttp = new XMLHttpRequest();
	xmlhttp.open("GET","/includetext/copyright.txt",false);
	xmlhttp.send(null);
	if (xmlhttp.status==200) 
	{
	var fileContent = xmlhttp.responseText;
	document.write( fileContent );
	}
	else
	{
	document.write("© Copyright Devon Church - All Rights Reserved");
	}
