function Initial() {
if (!document.all && document.getElementById) {
var i=0;
var j=0;
while (i<=texte) {
if (document.body.childNodes[j].tagName == "DIV") {
document.body.childNodes[j].id = "A"+i;
i++;
}
j++;
}
}
}

function ZeigeText(ged_num)
{
if (ged_num < 0)
ged_num = ged_anz - ged_num;

if (document.all) {
for(i=0; i<=texte; i++) {
document.all.tags("div")[i].style.visibility = "hidden";
}
document.all.tags("div")[ged_num].style.visibility = "visible";
}
else if (document.layers) {
for(i=0; i<=texte; i++) {
document.layers[i].visibility = "hide";
}
document.layers[ged_num].visibility = "show";
}
else if (document.getElementById) {
for(i=0; i<=texte; i++) {
eval ("document.getElementById(\"A" + i + "\").style.visibility = \"hidden\"");
}
eval ("document.getElementById(\"A" + ged_num + "\").style.visibility = \"visible\"");
}
else {
alert("Zur richtigen Anzeige ben&ouml;tigen Sie\neinen Browser ab der 4.Generation!");
}
}

function ZeigeInhalt() {
if (document.layers)
document.layers["Inhaltsverzeichnis"].visibility = "show";
else {
this.window.name="Gedichte";
fInhalt = window.open("ms_inh.htm","Inhalt","width=600px,height=435px,left=100px,top=50px");
}
}
