function myTELUSFooterDisplay()
{
    var nodes = [];

    function appendChild(iNode, iChild) { nodes[iNode].appendChild(nodes[iChild]); }
    function appendText(iNode, iText) { nodes[iNode].appendChild(document.createTextNode(iText)); }
    function createElement(iTagName) { return document.createElement(iTagName); }
    function writeAttribute(iIndex, iAttr, iValue) { nodes[iIndex].setAttribute(iAttr, iValue); }
    function writeAttribute_action(iIndex, iValue) { nodes[iIndex].action = iValue; }
    function writeAttribute_alt(iIndex, iValue) { nodes[iIndex].alt = iValue; }
    function writeAttribute_class(iIndex, iValue) { nodes[iIndex].className = iValue; }
    function writeAttribute_id(iIndex, iValue) { nodes[iIndex].id = iValue; }
    function writeAttribute_height(iIndex, iValue) { nodes[iIndex].height = iValue; }
    function writeAttribute_href(iIndex, iValue) { nodes[iIndex].href = iValue; }
    function writeAttribute_method(iIndex, iValue) { nodes[iIndex].method = iValue; }
    function writeAttribute_name(iIndex, iValue) { nodes[iIndex].value = iValue; }
    function writeAttribute_rel(iIndex, iValue) { nodes[iIndex].rel = iValue; }
    function writeAttribute_src(iIndex, iValue) { nodes[iIndex].src = iValue; }
    function writeAttribute_style(iIndex, iValue) { nodes[iIndex].style.cssText = iValue; }
    function writeAttribute_title(iIndex, iValue) { nodes[iIndex].title = iValue; }
    function writeAttribute_target(iIndex, iValue) { nodes[iIndex].target = iValue; }
    function writeAttribute_type(iIndex, iValue) { nodes[iIndex].type = iValue; }
    function writeAttribute_value(iIndex, iValue) { nodes[iIndex].value = iValue; }
    function writeAttribute_width(iIndex, iValue) { nodes[iIndex].width = iValue; }

    nodes[0] = createElement("div");
    writeAttribute_class(0, "pageFooter");
    nodes[1] = createElement("a");
    writeAttribute_href(1, "http://about.telus.com/legal/other_sites.html?lid=t.c-other_telus_sites&lpos=footer");
    writeAttribute_target(1, "_blank");
    appendChild(0, 1);
    appendText(1, "Other TELUS sites");
    nodes[2] = createElement("span");
    appendChild(0, 2);
    appendText(2, "|");
    nodes[3] = createElement("a");
    writeAttribute_href(3, "http://www.mytelus.com/contact_us");
    writeAttribute_target(3, "_blank");
    appendChild(0, 3);
    appendText(3, "Contact us");
    nodes[4] = createElement("span");
    appendChild(0, 4);
    appendText(4, "|");
    nodes[5] = createElement("a");
    writeAttribute_href(5, "http://about.telus.com/community/english/careers");
    writeAttribute_target(5, "_blank");
    appendChild(0, 5);
    appendText(5, "Careers");
    nodes[6] = createElement("span");
    appendChild(0, 6);
    appendText(6, "|");
    nodes[7] = createElement("a");
    writeAttribute_href(7, "http://portal.mytelus.com/Sitemap");
    appendChild(0, 7);
    appendText(7, "Sitemap");
    nodes[8] = createElement("span");
    appendChild(0, 8);
    appendText(8, "|");
    nodes[9] = createElement("a");
    writeAttribute_href(9, "http://portal.mytelus.com/FAQ");
    appendChild(0, 9);
    appendText(9, "Frequently asked questions");
    nodes[10] = createElement("span");
    appendChild(0, 10);
    appendText(10, "|");
    nodes[11] = createElement("a");
    writeAttribute_href(11, "http://about.telus.com/legal/security.html?lid=t.c-security&lpos=footer");
    writeAttribute_target(11, "_blank");
    appendChild(0, 11);
    appendText(11, "Security");
    nodes[12] = createElement("span");
    appendChild(0, 12);
    appendText(12, "|");
    nodes[13] = createElement("a");
    writeAttribute_href(13, "http://www.mytelus.com/nv/terms_conditions.html");
    appendChild(0, 13);
    appendText(13, "Terms & Conditions");
    nodes[14] = createElement("span");
    appendChild(0, 14);
    appendText(14, "|");
    nodes[15] = createElement("a");
    writeAttribute_href(15, "http://about.telus.com/legal/privacy/privacy.html");
    writeAttribute_target(15, "_blank");
    appendChild(0, 15);
    appendText(15, "Privacy");
    nodes[16] = createElement("span");
    appendChild(0, 16);
    appendText(16, "|");
    nodes[17] = createElement("a");
    writeAttribute_href(17, "http://portal.mytelus.com/Help");
    appendChild(0, 17);
    appendText(17, "Help");
    nodes[18] = createElement("div");
    writeAttribute_class(18, "subFooter");
    appendChild(0, 18);
    nodes[19] = createElement("span");
    appendChild(18, 19);
    appendText(19, "Powered by");
    nodes[20] = createElement("a");
    writeAttribute_href(20, "http://www.telus.com/");
    writeAttribute_target(20, "_blank");
    appendChild(18, 20);
    nodes[21] = createElement("img");
    writeAttribute_style(21, "vertical-align: top;");
    writeAttribute_src(21, "http://www.mytelus.com/global20/images/footer_logo.png");
    appendChild(20, 21);
    nodes[22] = createElement("span");
    appendChild(18, 22);
    appendText(22, "Copyright © ");
    nodes[23] = createElement("span");
    appendChild(18, 23);
    appendText(23, "2012");

    return nodes[0];
}


