// JavaScript V2.0, 01/2002
// (C) Creatures Unlimited
// http://www.GermanCreatures.net/


function anleitung(root,men,sel)
{
var titel='<a href="'+men+'anleitung.html" class="menu">Anleitung<br>Einf&uuml;hrung</a>';

var points=8;
var point=new Array(points);
point[1]='<a href="'+men+'anfang.html" class="menu">Wissenswertes f&uuml;r den Anfang</a>';
point[2]='<a href="'+men+'raeume.html" class="menu">R&auml;ume</a>';
point[3]='<a href="'+men+'steuerung.html" class="menu">Steuerung</a>';
point[4]='<a href="'+men+'konfiguration.html" class="menu">Konfiguration</a>';
point[5]='<a href="'+men+'objekte.html" class="menu">Objekte</a>';
point[6]='<a href="'+men+'oekologie.html" class="menu">&Ouml;kologie</a>';
point[7]='<a href="'+men+'anhang.html" class="menu">Anhang</a>';
point[8]='-';

var zeile='<tr><td width="1%"></td><td align="center" width="1%" id="mencol"><img src="'+men+'../images/sm.gif" border="0" alt="" width="16" height="16"></td><td width="98%" id="mencol">';

document.writeln('<table border="0" cellpadding="2" cellspacing="2" width="100%">');
document.writeln('<colgroup><col width="1%"><col width="1%"><col width="98%"></colgroup>');
document.writeln('<tr><td colspan="3"></td></tr>');
document.writeln('<tr><td align="center" width="1%" id="mencol"><img src="'+men+'../images/hm.gif" border="0" alt="" width="16" height="16"></td><td id="mencol" colspan="2">'+titel+'</td></tr>');

for (var tmp=1; tmp<=points; tmp++)
{
 if (point[tmp] == "-")
  document.writeln('<tr><td colspan="3"></td></tr>');
 else
  document.writeln(zeile+point[tmp]+'</td></tr>');
}

document.writeln('<tr><td colspan="3"></td></tr></table>');
}

