Für alle, die immernoch auf der Suche sind, ein kleines, überschaubares und obendrein noch funktionierendes script:)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>two frame test</title>
<script>
function twoFrameChange(nav,content){
top.iframe1.location.href = nav;
top.iframe2.location.href = content;
}
</script>
</head>
<body>
<iframe name="iframe1" src="http://www.yahoo.com"></iframe>
<iframe name="iframe2" src="http://www.google.com"></iframe>
<br>
<br>
<a href="javascript:twoFrameChange('http://www.msn.com','http://www.alltheweb.com');">link1</a>
</body>
</html>
Gruß Michael