// JavaScript Document
function customOnload(tdate,turl) {
	var sp1 = document.createElement('div');
	var sp2 = document.getElementById('content');
	
	sp2.appendChild(sp1);
	sp1.setAttribute("id", "print-footer");

	sp1.innerHTML = "This page was printed on "+tdate+". &#169; The State of Queensland (Disability Services Queensland) 2007.";
	
	var sp3 = document.createElement('div');
	var sp4 = document.getElementById('content');
	
	sp4.appendChild(sp1);
	sp3.setAttribute("id", "page-url");
	
	sp3.innerHTML = "This page URL: http//www.disability.qld.gov.au "+turl+".";
}

