var headerA = '<table cellspacing=1 cellpadding=1 border=0 height=100><tr><td width="640" valign="top"><h1>';

var headerB = '</h1></td></tr><tr><td width="550" valign="bottom"><a href="index.html" class="top">Top Page</a> - <a href="links.html" class="top">Links</a> - <a href="bio.html" class="top">Bio</a> - <a href="pictures.html" class="top">Pictures</a> - <a href="thoughts.html" class="top">Thoughts</a> - <a href="creations.html" class="top">Creations</a> - <a href="resume.html" class="top">Resume</a> - <a href="astro/index.html" class="top">Astrophotography</a></td></tr></table>';

var headerC = '</h1></td></tr><tr><td width="550" valign="bottom"><a href="links.html" class="top">Links</a> - <a href="bio.html" class="top">Bio</a> - <a href="pictures.html" class="top">Pictures</a> - <a href="thoughts.html" class="top">Thoughts</a> - <a href="creations.html" class="top">Creations</a> - <a href="resume.html" class="top">Resume</a> - <a href="astro/index.html" class="top">Astrophotography</a></td></tr></table>';

function writeHeader(pageTitle) {
var headerText='Andrew\'s Homepage';

if (pageTitle=='Index')
	{
	headerText='Andrew\'s Homepage';
	document.write(headerA + headerText + headerC);
	}
else if (pageTitle=='Bio')
	{
	headerText='Who Andrew Is';
	document.write(headerA + headerText + headerB);
	}
else if (pageTitle=='Links')
	{
	headerText='Links';
	document.write(headerA + headerText + headerB);
	}
else if (pageTitle=='Resume')
	{
	headerText='Resume of Andrew Welsh';
	document.write(headerA + headerText + headerB);
	}
else if (pageTitle=='Thoughts')
	{
	headerText='My Thoughts and Opinions';
	document.write(headerA + headerText + headerB);
	}
else if (pageTitle=='Creations')
	{
	headerText='Creations by Andrew Welsh';
	document.write(headerA + headerText + headerB);
	}
else if (pageTitle=='Pictures')
	{
	headerText='My Photos';
	document.write(headerA + headerText + headerB);
	}
else 
	{
	headerText='Andrew\'s Homepage';
	document.write(headerA + headerText + headerB);
	}
};

/* Written entirely from scratch by Andrew Welsh */
/* May be reused with permission of the author only (c)2004 Welsh House Productions*/
