function createFooter(toRoot) {
    footerHtml = "<!-- FOOTER -->"
               + "<TABLE cellSpacing=0 cellPadding=0 width='100%' border=0>"
               + "<TBODY>"
               + "<TR>"
               + "<td class=foot noWrap align=center bgColor=#e0e0e0 height=21>"
               + "<A class=foot href='"+ toRoot + "sitemap/index.html'>サイトマップ</a>&nbsp;|&nbsp;<a href='"+ toRoot + "policy/index.html' class='foot'>利用規約</a>&nbsp;|&nbsp;"
               + "<a href='"+ toRoot + "policy/security.html' class='foot'>情報セキュリティ</a>&nbsp;|&nbsp;<a href='"+ toRoot + "contact/index.html' class='foot'>お問い合わせ </a>"
               + "</td>"
               + "</tr>"
               + "<tr>"
               + "<TD class=footco nowrap align=center bgColor=#666666 height=17><img src='"+ toRoot + "common/images/corp.gif' width='12' height='12' align='absmiddle'>"
               + "1998-2010 EC-One, Inc.</td>"
               + "</tr>"
               + "</table>"
               + "<!-- /FOOTER -->";
    return footerHtml;
}