Probá así:
uno.php:
Código PHP:
<form>
<input name="datos2" class="textbox" value="prueba">
</form>
<script>
mi_ventana=window.open('dos.php?'+document.forms[0].datos2.value,'','');
</script>
dos.php:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<form>
<textarea name="textarea" id="textarea" rows="" cols=""></textarea>
</form>
<script>document.getElementById("textarea").value=location.search.substr(1);</script>
</body>
</html>