Hallo kathrin,
count=1;
while(count>6)
Die Schleife läuft, solange count größer als 6 ist, also nie. Normalerweise benutzt man hier eine for-Schleife: for(count=1;count<=6;count++)
...
if (document.layers) document.layers[''+tempid+''].visibility = "hide"
else if (document.all) document.all[''+tempid+''].style.visibility = "hidden"
else if (document.getElementById) document.getElementById(''+tempid+'').style.visibility = "hidden"
warum hier ''+tempid+''?
Ob das alles war, weiß ich im Moment auch nicht.
Gruß, Jürgen