//
// Philip Bailey
// 22 January 2001
//
// Purpose:
//  This file contains common JavaScript that is used to insert common
//  features into all Intranet pages.
//
// Modifications:
//  Philip Bailey - 25 Sep 2003 - Web site update
//   Ken Fries - Nov 17, 2004 - fixed date irregularity
////////////////////////////////////////////////////////
//
// Close the main page contents cell and insert page footer
//
document.writeln('</TD></TR></TABLE>');

var tDate = new Date();

document.writeln('<P class="footer" nowrap>');
document.writeln('<A class=footer href="/default.htm">Home</A> |');
document.writeln('<A class=footer href="/products/windturbines.htm">Wind Turbines</A> |');
document.writeln('<A class=footer href="/products/solar.htm">Solar Electricity</A> |');
//document.writeln('<A class=footer href="/siteindex.htm">Site Index</A> |');
document.writeln('<A class=footer href="/products/resource.htm">Wind Resource Assessment</A> |');
document.writeln('<A class=footer href="/companyinformation/about/abouthalus.htm">Company Information</A><WBR><BR>');
document.writeln('Send questions or comments about this web site to the');
document.writeln('<A class=footer href="mailto:webmaster@halus.com">webmaster</A>.');
document.writeln('<A class=footer href="/companyinformation/copyright.htm">Copyright © ' + tDate.getFullYear() + '</A> Halus Power Systems.');
document.writeln('</P>');
//
// End of File

