function NewLayout(aFile,aWiki,aPage,aPageURI,aShortPageName,aMode)
{
  if (aPage == 'Waltis Projekte' && aMode == '') {
    var layout = new CLayout( 1, aFile, 'wiki.jpg', '../index.html' );
    DefDir( layout );
    layout.SelDir( 'projekte/index.asp' );
  } else {
    var layout = new CLayout( 1, '#', 'wiki.jpg', 'index.asp' );
    layout.AddDir( 0, aFile, aWiki );
  }
  return layout;
}

function OtherWikis(aLayout,aPage,aFile,aMode)
{
  if (aPage != 'Waltis Projekte' && aMode != 'Edit') {
    aLayout.AddDir( 1, '../index.html', 'Weitere Bereiche' );
    aLayout.AddDir( 2, '../blog/index.asp', 'Waltis Blog' );
    aLayout.AddDir( 2, '../walti/index.asp', 'Persönliches' );
    aLayout.AddDir( 2, '../physik/index.asp', 'Mathe & Physik' );
    aLayout.AddDir( 2, '../gallery/index.asp', 'Bilder-Galerien' );
    aLayout.AddDir( 2, '../aviatik/index.asp', 'Aviatik-Wiki' );
    aLayout.AddDir( 2, '../work/index.asp', 'Arbeitsbereich' );
  }
}

