styles='<STYLE>.footerLink {' +
		'font-family:' + fF + ';' +
		'font-weight:' + fW + ';' +
		'font-size:' + fS + 'px;' +
		'text-decoration:none;' +
		'color:' + fC + ';}' + 
		'.footerRightText {' +
		'font-family:' + fF + ';' + 
		'font-size:' + footerRightTextSize + 'px;' +
		'color:' + fC + ';}' + 
		'.footerRightText A{' +
		'font-family:' + fF + ';' + 
		'font-size:' + footerRightTextSize + 'px;' +
		'text-decoration:none;' +
		'color:' + fC + ';}' +
		'.footerRightText A:hover{' +
		'font-family:' + fF + ';' + 
		'font-size:' + footerRightTextSize + 'px;' +
		'text-decoration:underline;' +
		'color:' + fC + ';}</STYLE>';

document.write(styles)


tw = '<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" width=770><TR>\n'
for (i=0; i<navItems.length; i++)
{
	tw += '<TD><TABLE CELLPADDING="0" CELLSPACING="0" BORDER=0" BGCOLOR="' + footerBG + '">\n';
	tw += '<TR>\n';
	tw += '<TD BGCOLOR="' + footerTop + '" WIDTH="1" COLSPAN="3"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="1" HEIGHT="1" BORDER="0"></A></TD>\n';
	tw += '</TR>\n';
	tw += '<TR>\n';
	tw += '<TD BGCOLOR="' + footerHighlight1 + '" WIDTH="1" COLSPAN="2"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="1" HEIGHT="1" BORDER="0"></A></TD>\n';
	tw += '<TD BGCOLOR="' + footerBG + '" WIDTH="1"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="1" HEIGHT="1" BORDER="0"><A></TD>\n';
	tw += '</TR>\n';
	tw += '<TR>\n';
	tw += '<TD BGCOLOR="' + footerHighlight2 + '"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="1" HEIGHT="' + (footerHeight-3) + '" BORDER="0"></A></TD>\n';
	tw += '<TD BGCOLOR="' + footerBG + '" VALIGN="middle" ALIGN="center">';

	tw += '<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" BGCOLOR="' + footerBG + '"><TR>';
	tw += '<TD ROWSPAN="3"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="' + headerSidePadding + '" HEIGHT="' + footerHeight + '" BORDER="0"></A></TD>';
	tw += '<TD NOWRAP VALIGN="bottom"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="100%" HEIGHT="' + headerTopPadding + '" BORDER="0"></A></TD>';
	tw += '<TD ROWSPAN="3"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="' + headerSidePadding + '" HEIGHT="' + footerHeight + '" BORDER="0"></A></TD>';
	tw += '</TR><TR><TD NOWRAP><A HREF="' + topLevelLinks[i] + '" class="footerLink" TARGET="' + topLevelTargets[i] + '">' + navItems[i] + '</A></TD></TR><TR>';
	tw += '<TD NOWRAP VALIGN="top"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="100%" HEIGHT="' + headerTopPadding + '" BORDER="0"></A></TD>';
	tw += '</TR></TABLE>';
	
	tw += '<TD BGCOLOR="' + footerDimlight + '"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="1" HEIGHT="1" BORDER="0"></A></TD>\n';
	tw += '</TR>\n';
	tw += '<TR>\n';
	tw += '<TD BGCOLOR="' + footerBG + '" WIDTH="1"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="1" HEIGHT="1" BORDER="0"></A></TD>\n';
	tw += '<TD BGCOLOR="' + footerDimlight + '" WIDTH="1" COLSPAN="2"><A HREF="' + topLevelLinks[i] + '" TARGET="' + topLevelTargets[i] + '"><IMG SRC="./images/spacer.gif" WIDTH="100%" HEIGHT="1" BORDER="0"></A></TD>\n';
	tw += '</TR>\n';
	tw += '</TABLE>\n</TD>';
}
tw += '</TR></TABLE>\n'

document.write(tw);
tw = '';
