Entweder so:

> function ChangeLink(obj) {
>   obj.style.textDecoration='underline';
>  }
> //-->
> </script>
> 
> und
> 
> <A HREF..... onMouseOver="ChangeLink(parent.BottomFrame.linkname)">

Oder so:

> function ChangeLink(ID) {
>   parent.BottomFrame[ID].style.textDecoration='underline';
>  }
> //-->
> </script>
> 
> und
> 
> <A HREF..... onMouseOver="ChangeLink('linkname')">

Oder so:

> function ChangeLink(ID) {
>   eval('parent.BottomFrame.'+ID).style.textDecoration='underline';
>  }
> //-->
> </script>
> 
> und
> 
> <A HREF..... onMouseOver="ChangeLink('linkname')">


Claudius

~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~
Kaffeepause im United Planet Communityserver ...
http://www.intrexx.com/communityserver                         
_______________________________________________
Coffeehouse mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/coffeehouse

Antwort per Email an