Hi,
<a HREF="blabla.html" onmouseover="parent.namemeinesframes.location.href('dateixy.html');return true" onMouseOut="status='';"><img src="1.gif"></a>
location.href ist eine Eigenschaft, keine Methode. Richtig wäre:
onmouseover="parent.namemeinesframes.location.href = 'dateixy.html';"
Das "return true;" brauchst Du hierbei nicht.
Cheatah