function InsertHeader(pID)
{
	var pagePath = window.location.pathname;
	var pageName = pagePath.substring(pagePath.lastIndexOf('/') + 1,pagePath.length-4).replace(/_/gi, " ");
	document.write('<table class="hdr" summary="Henry Lawson Society header"><tr><td class="hdrl" rowspan="2"><img class="logo" src="img/henry_lawson_logo.gif" alt="logo"></td><td class="hdrtr"><h1>THE HENRY LAWSON SOCIETY OF NSW INC.</h1><h2>The Henry Lawson Centre, Gulgong, NSW Australia</h2></td></tr><tr><td class="hdrr">');
	InsertMenu(pageName);
	document.write('</td></tr></table>');
}

