io ho fatto queste 2 pagine è tutto sembra funzionare:
forse richiamavi la stessa pagina


Edit1.html
<html>
<head>
<title>Selezione attività</title>
<script language="javascript">
function trasferisci () {
aa=window.open('Edit2.html', 'aa');
bb=self.document.padre.testo1.value;
aa.document.figlia.testo2.value=bb;
}
</script>
</head>
<body name="body" bgcolor="#D4D0C8">
<form name= "padre">
<input type="text" name="testo1">
<input type="button" value="PASSAGGIO" onCLick="trasferisci()">
</form>
</body>
</html>


Edit2.html
<html>
<head>
<title>Selezione attività</title>
</head>
<body name="body" bgcolor="#D4D0C8">
<form name= "figlia">
<input type="text" name="testo2">
</form>
</body>
</html>