Hallo,
dein Problem ist ganz klar und einfach zu beseitigen:
1. Bei Onclick brauchst du kein <a href=""> nicht mehr.
<td<img src="buttons/home_b.gif" border="0" name="home" onclick="ZweiFrames(URL1,F1,URL2,F2,name,bild)" onmouseout="wechsel('home','buttons/home_b.gif')" onmouseover="wechsel('home','buttons/home_r.gif')"></a></td>
2. Die function sieht jetzt so aus:
function ZweiFrames(URL1,F1,URL2,F2,name,bild)
{
parent.frames[F1].location.href=URL1;
parent.frames[F2].location.href=URL2;
document.images[name].src = bild;
}
das sollte funktioniren.
MfG
Sohail