// This file contains the links for the black bar in the page header.

// 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 blackbar links.
    document.write("<table summary=\"Table to stylize Blackbar Header links\">");

    // The second line creates the fist table cell holding the links for the LEFT side of the blackbar.
        document.write("<tr><td class=\"blackbarleft\">");

            // This is the link for the left side of the black bar.
                document.write("<a href=\"http://www.gov.bc.ca/\">Government of British Columbia</a></td>");

    // The next line creates the table cell for the RIGHT side links.
        document.write("<td class=\"blackbarright\">");

            // This is the link for the right side of the black bar.
                document.write("<a href=\"/hfp/frep/index.htm\">FREP Home</a>|&nbsp;&nbsp;<a href=\"http://www.gov.bc.ca/for\">Ministry Home</a></td>");

// The last line closes the table.
    document.write("</tr></table>");
