t;script language="javascript">
function GetValue(form){
var addvalue = form.txtwebsite.value;
form.txtsetting.value=addvalue;
window.opener.testing.hello.value = addvalue;
}
</script>
</head>
<body>
<form name="f1">
Please enter the name of the web site here:<br>
<input type="text" name="txtwebsite" size="25">
<input type="text" name="txtsetting" size="25">
<center>
<input type="button" name="ok" value="OK" onclick="GetValue(this.form)">
</center>
</form>
</body>
</html>
The next file is the one which opens window and is called openwindow.html
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE>Hello |