// JavaScript Document
// Name:    bottom.js
// Desc:    contains bottom table include
//
// $LastChangedDate: 2008-06-18 21:44:53 +0200 (Mi, 18 Jun 2008) $
// $Id: bottom_en.js 30 2008-06-18 19:44:53Z eric $

/**
 * WriteBottomMenu
 *
 * @param string
 */
function WriteBottomMenu(strPath)
{
    var buffer = "<div class=\"bottom-bar\"><ul id=\"footer\">";
    buffer += "<li><a href=\"" + strPath + "index.html\">Home</a></li>";
    buffer += "<li><a href=\"../" + strPath + "kunden-net/front/index.php?m=89752&pref_lang=0\">Login</a></li>";
  //  buffer += "<li><a href=\"" + strPath + "kontakt/index.html\">Contact</a></li>";//
    buffer += "<li><a href=\"" + strPath + "sitemap.html\">Sitemap</a></li>";
    buffer += "<li><a href=\"" + strPath + "impressum.html\">Imprint</a></li>";
    buffer += "<li><a href=\"" + strPath + "download/pdf/BPW_Terms-and-Conditions.pdf\">Terms and Conditions</a></li>";
    buffer += "<li><a href=\"" + strPath + "data-protection.html\">Data protection</a></li>";
    buffer += "</ul>";
    buffer += "<div class=\"search-input\"><div class=\"search\"><form action=\"/en/search.php\" method=\"post\"><label for=\"searchQuery\">Search</label><input id=\"searchQuery\" type=\"text\" name=\"query\" class=\"input\" /><input type=\"submit\" value=\"\" id=\"submitSearch\" name=\"operation\" title=\"Suche starten ...\" /></form></div></div>";
    buffer += "</div>";
    
    document.writeln(buffer);
} // WriteBottomMenu