Hallo!
ich habe das Script ein wenig abgeändert, so müßte es funktionieren.
<script language="JavaScript">
<!--
function Go(x)
{
if(x == "nothing")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else if(x == "end") top.location.href = parent.frames[1].location;
else
{
top.location.href = x; //hier löst Du das Frameset auf und gewählte Seite wird angezeigt
}
}
//-->
</script>
Anstaat parent.frames[1].location.href = x; wird top.location.href = x; geschrieben.
dazu auch: <../../tecba.htm>
mfg, André