<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
   <title>JavaScript: Austausch mehrerer Frame-Fenster</title>

   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

   <meta name="description"
      content="&Uuml;bung JavaScript. Austausch mehrerer Frame-Fenster">
   <meta name="keywords" content="HTML, JavaScript">
   <meta name="author" content="Roland Unger">

<script language="JavaScript" type="text/javascript">
<!--

function ZweiFrames(url1, frame1, url2, frame2) {
   parent.frames[frame1].location.href=url1;
   parent.frames[frame2].location.href=url2;
   // Die Frames werden von 0 ab in ihrer Reihenfolge in der Frameset-Definitionsdatei durchnummeriert
}

// -->
</script>

</head>

<body>

<h3>Navigation</h3>

<p><a href="javascript:ZweiFrames('html_js_232b.html', 1, 'html_js_232c.html', 2)";>Richtige Reihenfolge</a></p>

<p><a href="javascript:ZweiFrames('html_js_232c.html', 1, 'html_js_232b.html', 2)";>Vertauschte Reihenfolge</a></p>

</body>
</html>