// 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("99-5460 Canotek Road, Ottawa, Ontario&nbsp;&nbsp;&nbsp;&nbsp;Tel 613.746.7300&nbsp;&nbsp;&nbsp;&nbsp;Fax 613.745.4886&nbsp;&nbsp;Helpline 613.746.0330");
                
            // 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=\"mailto:info@mrfoundation.com\">info@mrfoundation.com</a></td></tr>");

// The last line closes the table.
    document.write("</table>");
