function printDocumentTitle()
{
	document.write('<title>' + siteTitle + titleSeparator);
	if (section != "") document.write(section);
	if (documentTitle != section) document.write(titleSeparator + documentTitle);
	document.writeln('</title>');
}
function printDocumentSide()
{
document.writeln('<center>');
document.writeln('<table width="750" cellpadding="0" cellspacing="0" border="0">');
document.writeln('<tr>');
document.writeln('	<td colspan="3" class="pageBorder"><img src="' + pathModifier + 'images/spacer.gif" width="750" height="3"></td>');
document.writeln('</tr>');
document.writeln('<tr>');
document.writeln('	<td class="pageBorder"><img src="' + pathModifier + 'images/spacer.gif" width="3" height="300"></td>');
document.writeln('<td width="744" align="left" valign="top" style="background: url(' + pathModifier + 'images/background-inner.gif) top left repeat-y;">');
document.writeln('');
document.writeln('<table width="744" cellpadding="0" cellspacing="0" border="0">');
document.writeln('<tr>');
document.write('	<td width="265" align="center" valign="top" class="sidebar">');
document.write('<img src="' + pathModifier + 'images/spacer-sidebar.gif" width="265" height="30" border="0">');
document.write('<a href="https://awnc.selectrakonline.com/recruitment/recruit.aspx"><img src="' + pathModifier + 'images/button-submitapp.gif" width="265" height="20" border="0"></a>');
document.write('<a href="' + pathModifier + '"><img src="' + pathModifier + 'images/logo-inner.gif" width="265" height="94" border="0"></a>');
document.writeln('<img src="' + pathModifier + 'images/side-qualitypeople.gif" width="265" height="54"><br>');
}

function printDocumentHeader()
{
document.writeln('	</td>');
document.write('	<td width="479" valign="top" style="background: url(' + pathModifier + 'images/background-products.jpg) top left no-repeat;">');
document.write('<img src="' + pathModifier + 'images/spacer.gif" width="479" height="30" border="0"><br>');
printGlobalNavigation();
document.writeln('		<img src="' + pathModifier + 'images/spacer.gif" width="479" height="115" border="0">');
}
function printGlobalNavigation()
{
document.writeln('	<table width="479" height="29" cellpadding="0" cellspacing="0" border="0">');
document.writeln('	<tr>');
document.writeln('		<td align="center" style="background: url(' + pathModifier + 'images/background-nav.gif) top left repeat-x;">');
document.writeln('		<table height="29" cellpadding="0" cellspacing="0" border="0">');
document.writeln('		<tr height="20">');
for (var i = 0; i < mainNavigationText.length; i++)
{
document.writeln('			<td><a href="' + pathModifier + mainNavigationURLs[i] + '"><img src="' + pathModifier + 'images/' + mainNavigationImages[i] + '" border="0"></a></td>');
if (i != mainNavigationText.length-1) document.writeln('			<td><img src="' + pathModifier + 'images/menu-divider.gif" width="2" height="20"></td>');
}
document.writeln('		</tr>');
document.writeln('		<tr height="9">');

for (var i = 0; i < mainNavigationText.length; i++)
{
var menuHighlight = 'spacer.gif';
if (section == mainNavigationText[i]) menuHighlight = 'menu-highlight.gif';
document.writeln('			<td align="center" valign="bottom"><img src="' + pathModifier + 'images/' + menuHighlight + '" width="15" height="7" border="0"></td>');
if (i != mainNavigationText.length-1) document.writeln('			<td></td>');
}
document.writeln('		</tr>');
document.writeln('		</table>		');
document.writeln('		</td>');
document.writeln('	</tr>');
document.writeln('	</table>');
}
function printDocumentFooter()
{
document.writeln('	<br></td>');
document.writeln('</tr>');
document.writeln('</table>');
document.writeln('<table width="744" cellpadding="0" cellspacing="0" border="0"><tr><td width="265"><img src="' + pathModifier + 'images/spacer.gif" width="265" height="1"></td><td width="479">');
document.writeln('<div class="footer">' + footerText + '</div>');
document.writeln('<div class="footer">Site forged by the websmiths at <a href="http://www.crosscomm.net/">CrossComm, Inc.</a></div>');
document.writeln('</td></tr></table>');
document.writeln('<img src="' + pathModifier + 'images/footer-reddots.gif" width="744" height="13" border="0"><br><br>');
document.writeln('</td>');
document.writeln('	<td class="pageBorder"><img src="' + pathModifier + 'images/spacer.gif" width="3" height="300"></td>');
document.writeln('</tr>');
document.writeln('<tr>');
document.writeln('	<td colspan="3" class="pageBorder"><img src="' + pathModifier + 'images/spacer.gif" width="750" height="3"></td>');
document.writeln('</tr>');
document.writeln('</table>');
document.writeln('</center>');
}