// -----------------------------------------------------------------------------
// Copyright (C) 2000 nwhin.com, Inc. All Rights Reserved.
// Module:  main.js
// Version: 1.0
// Author:  David Houck, www.ImpelSolutions.com
// Written: 11/19/2000
// Changed: 
// -----------------------------------------------------------------------------

// Declare variables

    var strChr34 = String.fromCharCode(34);
    var strSeperator = " / "

    var strCopyright =
        "<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH='100%'>" +
        "  <TR>" +
        "    <TD CLASS='FooterStd' ALIGN='center' VALIGN='center' WIDTH='100%'>" +
	"      Copyright &copy; 2000 nwhin.com, Inc. All rights reserved." +
        "    </TD>" +
        "  </TR>" +
        "</TABLE>" +
        "<BR>";

    var strFooterStandard =
        "<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH='100%'>" +
        "  <TR>" +
        "    <TD CLASS='FooterStd' ALIGN='center' VALIGN='center' WIDTH='100%'>" +
        "      <A HREF='../index.htm' TARGET='_self'>Home</A>" +
               strSeperator +
        "      <A HREF='../aboutus.htm' TARGET='_self'>About Us</A>" +
               strSeperator +
        "      <A HREF='../contactus.htm' TARGET='_self'>Contact Us</A>" +
               strSeperator +
        "      <A HREF='../privacy.htm' TARGET='_self'>Privacy Statement</A>" +
        "    </TD>" +
        "  </TR>" +
        "</TABLE>";

// -----------------------------------------------------------------------------
// Purpose: Writes the copyright notice
// Input:   N/A
// Output:  N/A
// Written: 11/19/2000
// Changed: 
// -----------------------------------------------------------------------------
function CopyrightWrite()
{
    document.write(strCopyright);
}

// -----------------------------------------------------------------------------
// Purpose: Writes the standard footer
// Input:   N/A
// Output:  N/A
// Written: 11/19/2000
// Changed: 
// -----------------------------------------------------------------------------
function FooterStdWrite()
{
    document.write(strFooterStandard);
}
