Hallo Joens,
sag doch gleich, was du willst :)))
Wenn es jede beliebige Datei sein soll, dann könnte dir folgender Code helfen:
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Testseite</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
function beispiel()
{
parent.frames[1].document.location.href=document.forms[0].ua.value;
}
//-->
</script>
</head>
<body>
<h1>Test</h1>
<form action="#" onSubmit="beispiel()">
<input type="text" size="40" name="ua">
<input type="button" value="Fenster öffnen" onClick="beispiel()">
</form>
</body>
</html>
Viele Grüße
Pidder Lüng