Patrick: Drei Frames gleichzeitig ändern?

Beitrag lesen

Hi.

Das ist mein Quelltext:

<html>
<head>
<script type="text/javascript">
<!--
function DreiFrames(URI1,F1,URI2,F2,URI3,F3) {
  Frame1=eval("parent."+F1);
  Frame2=eval("parent."+F2);
  Frame3=eval("parent."+F3);
  Frame1.location.href = URI1;
  Frame2.location.href = URI2;
  Frame3.location.href = URI3;
}
function DreiFramesBack(F1,F2,F3) {
  Frame1=eval("parent."+F1);
  Frame2=eval("parent."+F2);
  Frame3=eval("parent."+F3);
  Frame2.history.back();
  if (!window.opera) window.setTimeout("Frame2.history.back()",10);
  if (!window.opera) window.setTimeout("Frame3.history.back()",10);
}
function DreiFramesForward(F1,F2,F3) {
  Frame1=eval("parent."+F1);
  Frame2=eval("parent."+F2);
  Frame3=eval("parent."+F3);
  Frame1.history.forward();
  if (!window.opera) window.setTimeout("Frame2.history.forward()",10);
  if (!window.opera) window.setTimeout("Frame3.history.forward()",10);
}
//-->
</script>
</head>
<body>
<body bgcolor="black">
<div align="center">
<a href="javascript:DreiFrames('alertup1.htm','alertup','alertdown1.htm','alertdown','status1.htm','status')" onFocus="if(document.all) this.blur()"><img src="greenalert.jpg" width="150"
height="35" border="0"></a><p><img src="aufbauendufp.gif">
</div>
</body>
</html>

Damit ändern sich nur 2 Frames. Der dritte Frame "status" ändert sich nicht.

Danke für die Hilfe.

CU
Patrick