function setcolor( id, no )
{
var i;
var max/* alert("funtion setcolor"); */ // setcolor funktioniert nur wenn hier eine alert-Meldung steht
for( i = 97; i <= 100; i++ )
{
document.getElementById(String.fromCharCode(i)).style.color = "#FFFFFF";
}
Wann rufst du das hier auf?
Im header vermute ich. d.h. es gibt noch keine Elemente im document. Du kannst diese Funmktion erst nach onload aufrufen.
Struppi.