also wenn ich dich richtig verstanden hab willste durchn klick zwei frames auf einmal wechseln
als beispiel hab ich den frame body und den frame head der sich wechseln soll
<script>
function doFrameWechsel () {
top.head.location.href=("urlFürHeadFram.html");
top.body.location.href=("urlFürBodyFram.html");
}
</script>
das script muss in der seite mit dem eventHandler eingebunden werden
dann müsste es gehn
<frameset rows="19%,*">
<frame name="head" src="head.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frameset cols="19%,*">
<frame name="" src="navi.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frame name="body" src="body.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
</frameset>
</frameset>