////////////////////////////////
// Created by Brian Lindner
// Feb 28, 2K1
///////////////////////////////


////////// Create Header //////////
// Adds a header for the page
/////////////////////////
function createHeader(Section)
{
  pg = Section.toUpperCase();

  if(pg != null) {
    document.write("<div align='center'>");

   // see what footer wee need to display
    if (pg == "WHY") {
      //document.write("<A href='/why/who_are_we.html' class='footerLink' TITLE=''>Who We Are</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/why/approach.html' class='footerLink' TITLE=''>Our Approach</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/why/history.html' class='footerLink' TITLE=''>History</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/why/applause.html' class='footerLink' TITLE=''>Client Applause</a>");
    }
    else if (pg == "BUSINESS") {
      document.write("<A href='/business/strengths.html' class='footerLink' TITLE=''>Records of Success</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/business/roi.html' class='footerLink' TITLE=''>ROI</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/business/on_time.html' class='footerLink' TITLE=''>On Time, On Budget</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/business/methodology.html' class='footerLink' TITLE=''>Proven Methodology</a>");
    }
    else if (pg == "CAREERS") {
      document.write("<A href='/careers/paths.html' class='footerLink' TITLE=''>Pathways to Success</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/careers/jobs.html' class='footerLink' TITLE=''>Job Postings</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
      document.write("<A href='/careers/artech_comments.html' class='footerLink' TITLE=''>Artech Perspectives</a>");
    }
    else if (pg == "TECHNICAL") {
      document.write("<A href='/technical/affiliations.html' class='footerLink' TITLE=''>Affiliations</a>");
    }

    document.write("<hr width='95%'><br>");
    document.write("</div>");
  }
}


////////// Add Footer //////////
// Adds a Footer to the page
/////////////////////////
function createFooter()
{

    document.write("<br><br><hr width='95%'>");
    document.write("<div align='center'>");

    document.write("<A href='/contact.html' class='footerLink' TITLE=''>Contact Us</a>&nbsp;|&nbsp;");
    document.write("<A href='/mission.html' class='footerLink' TITLE=''>Mission Statement</a>&nbsp;|&nbsp;");
    document.write("<A href='/careers/jobs.html' class='footerLink' TITLE=''>Job Postings</a>");

    document.write("</div>");	
             

    document.write("<div align='center'><font face='helvetica,arial' size=1>&copy; 1995, 2001 Artech Consulting Group. All rights reserved.</font></div>");

}





