// This file contains the links for the page footer.

// All links in javascript files in the 'includes' folder must be absolute (image and/or URL).

// To maintain XHTML Strict compliance, all double-quotes (") inside the document.write lines must
// be preceded by a NECESSARY backslash (\). Be careful and do not remove these slashes.

// The first line creates a table to hold the footer links.
    document.write("<table summary=\"Table to stylize Footer links\">");

    // The second line creates the fist table cell holding the links for the LEFT side of the footer.
        document.write("<tr><td class=\"footleft\">");

            // The next lines are the links for the left side. Links are Absolute
                document.write("<a href=\"/hfp/frep/index.htm\">Home</a>");
                document.write("<a href=\"#top\">Top</a>");
                document.write("<a href=\"http://www.gov.bc.ca/com/copy/\">Copyright</a>");
                document.write("<a href=\"http://www.gov.bc.ca/com/disc/\">Disclaimer</a>");

            // The last link for the left side has a different style to remove the white line.
                document.write("<a href=\"http://www.gov.bc.ca/com/priv/\" class=\"footleftlast\">Privacy</a></td>");

    // The next line creates the table cell for the RIGHT side links.
        document.write("<td class=\"footright\">");

            // This is the link for the right side of the footer.
                document.write("<a href=\"/hfp/frep/feedback/index.htm\">Feedback</a></td></tr>");

// The last line closes the table.
    document.write("</table>");
