Frameset:
[html]
<html>
<head>
<title>Frameset</title>
</head>
<frameset rows="100,*" border="0">
<frame src="banner1.html" name="banner" id="banner" />
<frame src="main1.html" name="main" id="main" />
</frameset>
</html>
[/html]
main1.html
[html]
<html>
<head>
<title>Hauptseite</title>
<script type="text/javascript" language="JavaScript" src="selectframe.js"></script>
</head>
<body>
<a href="javascript:wechsel('2.html)'">Seite 2</a>
<a href="javascript:wechsel('3.html)'">Seite 3</a>
</body>
</html>
[/html]
selectframe.js:
var seite;
function wechsel (seite) {
parent.main.location.href="main" + seite;
parent.banner.location.href="banner" + seite;
}
Ist nur ein Ansatz.
Die Seiten sind wie leicht zu erkennen so zusammen gehörig:
main1.html => banner1.html
main2.html => banner2.html
....
Gruß Alex
}