Hi !
Hab da ein Problem mit einer funtion:
Normal4 = new Image();
Normal4.src = "images/topNav/prof0.gif";
Highlight4 = new Image();
Highlight4.src = "images/topNav/prof1.gif";
function seiteLaden(NavID,Bildobjekt,leftURL,contentURL,bottomURL)
{
top.frames(2)=location.href=leftURL;
top.frames(3)=location.href=contentURL;
top.frames(4)=location.href=bottomURL;
BildID = NavID - 1;
Bildwechsel(BildID,Bildobjekt);
}
Erklärung:
Bildobjekt: Oben initialisierte und deklarierte Images
es sollen drei Frames geändert werden, wenn man die function so aufruft:
<a href="javascript:seiteLaden(1,Highlight1,'dummy.htm','dummy.htm','dummy.htm')"
onMouseOver="Bildwechsel(0,Highlight1)"
onMouseOut="Bildwechsel(0,Normal1)">
Die Funktiob Bildwechsel verursacht highlighting von buttons (funktioniert!!!)
Die Fehlermeldung die ich bekomme heisst:
"Nicht implementiert" und bezieht sich auf top.FRAMES
Danke und Gruss
Ballantino