// adds url at the bottom of the print page
window.onload = function addPrintFooter() {
	var p = document.createElement('p');
	p.className = 'print-footer';
	p.innerHTML = "Page URL: " + window.location.href;
	document.body.appendChild(p);
}
