Hi

> Folgendes - wie kann ich mit Javascript feststellen, ob ein Browser mehr
> als 800x600 Aufl�sung hat oder nicht?

if(screen.width == 1024) {
   parent.location.href='index1024x768.html';
}
else if(screen.width == 800) {
   parent.location.href='index800x600.html';
}
else {
   parent.location.href='index640x480.html';
}

hat google dir nicht helfen k�nnen? ;o)

Gruss
Steppel

_______________________________________________
Coffeehouse mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/coffeehouse

Antwort per Email an