joens: In Frame öffnen

Beitrag lesen

Ich habe folgendes Skript, bei dem die Eingabe in ein Formularfeld, das Öffnen eines neuen Fensters bewirkt.

Nun möchte ich aber, dass die Datei nicht in einem neuen Fenster, sondern in einen anderen Frame geladen werden soll.

Wer kann mir da weiter helfen ?!

Zum besseren Verständnis, der gesamte Quelltext :

----------------------

<html>

<body bgcolor="gray">
<link rel="stylesheet" type="text/css" href="format.css">

<font color="white" face="arial" size="2"><b>Dictionary   <font color="bluegreen">Englisch - Deutsch / Deutsch Englisch</b></font><br><p><br><br><br><br><br><br><br><br><br><p><br><br><br>

<script language="JavaScript">
<!--
function passwort()
{

window.open(document.formularname.load.value+".cgi",'','resizable=1,location=0,directories=0,status=0,'+'menubar=0,scrollbars=2,toolbar=0,width=400,height=350,screenX=100,screenY=100');

}
//-->
</script>

<body>

<form name="formularname" onSubmit="false;">
<font color="orange" face="arial" size="2">  Geben Sie das Wort ein welches sie übersetzt haben wollen :<br>Type in the word you would like to be translated:<hr color="white" width="50%" align="left"><br><br><br></font>
  <input type="TEXT" name="load" size="50" maxlenght="100" style="background-color:; color:#000000; border:0px solid #000000; font-family:arial; font-size:8pt; letter-spacing=1px">
<input type="submit" value="übersetzen / translate" onClick="passwort()" style="background-color:gray; color:blue; border:0px solid #000000; font-family:arial; font-size:10pt; text-decoration: underline;cursor: help; hover { text-decoration: none;">
</form>
<br><hr color="white" width="50%" align="left">

</html>

--------------

vielen Dank im Vorraus