/* This function shows the page header for the PeLuAk web pages.
*/
function showPageHeader(PageName)
{
  var     m_sFileName;
  var     m_sPageWithoutLang;
  var     m_sPageWithLangSE;
  var     m_sPageWithLangEN;
  var     m_sSearch;
  var     m_SCurrentLang = "SE";

  // The file name is retrieved
  m_sFileName = retrieveFileName();

  // The language is retrieved from the page ------------------------------------  
  m_SCurrentLang = retrieveLanguage(m_sFileName);

  // The page without the language code is retrieved ---------------------
  m_sPageWithoutLang = retrievePageName(m_sFileName);

  if (m_sPageWithoutLang == "index")
  {
    m_sPageWithLangSE = m_sPageWithoutLang + ".html";
  }
  else
  {
    m_sPageWithLangSE = m_sPageWithoutLang + "_SE" + ".html";
  }
  m_sPageWithLangEN = m_sPageWithoutLang + "_EN" + ".html";
  
  m_sSearch = location.search;
  
  m_sPageWithLangSE = m_sPageWithLangSE + m_sSearch;
  m_sPageWithLangEN = m_sPageWithLangEN + m_sSearch;

  // The page header is written
  document.write('<table class="table_100">');
  document.write('<tr>');
  document.write('<td>');
  document.write('<div class="ta_left">');
  if (m_SCurrentLang == "SE")
  {
    document.write('<a href="index.html"');
    document.write('><img src="images/PeLuAkLogo_Blue.gif" alt="PeLuAks logo" class="image_no_border" /></a>');
  }
  else
  {
    document.write('<a href="index_EN.html"');
    document.write('><img src="images/PeLuAkLogo_Blue.gif" alt="PeLuAks logo" class="image_no_border" /></a>');
  }
  document.write('</div>');
  document.write('</td>');
  document.write('<td>');
  document.write('<div class="page_header">');
  document.write(PageName);
  document.write('</div>');
  document.write('</td>');
  document.write('<td>');
  document.write('<div class="ta_right">');
  document.write('<a href=');
  document.write(m_sPageWithLangSE);
  document.write('><img src="images/swedish.gif" alt="Se sidorna p&aring; svenska" class="image_no_border" /></a>');
  document.write(' ');
  document.write('<a href=');
  document.write(m_sPageWithLangEN);
  document.write('><img src="images/english.gif" alt="View the site in English" class="image_no_border" /></a>');
  document.write('</div>');
  document.write('</td>');
  document.write('</tr>');
  document.write('</table>');
  //document.write('<hr size="4" />');
}
