1.Variante
<script language="JavaScript">
<!--
function frameset(theFrame, theURL) {
IE4=(document.all) ? 1 : 0;
NN4=(document.layers) ? 1 : 0;
if (IE4) {
window.parent.frames[theFrame].location=theURL
}
if (NN4) {
parent.frames[theFrame].location=theURL
}
}
//-->
</script>
<a href="#" onClick="frameset('ihr 1 Frame', 'ihre.htm');
frameset('ihr 2 Frame', 'ihre.htm')">1.Variante</font></a>
2.Variante
<a href="#" onClick="parent.ihr 1 Frame.location='ihre.htm';
parent.ihr 2 Frame.location='ihre.htm'; return false;">2.Variante</font></a>
ciao,
Klaus...