No se si es posible pero intento desde una pagina abrir otra, cumplimentar un campo que se encuentra en la ventana que he abierto y enviarlo.
Uso este codigo:
<html>
<head>
<title>Window 1</title>
<script type="text/javascript">
function openWindow2 () {
child = open ( "http://www.midominio.com/pagina2.asp", "Window2", "width=400,height=200,alwaysRaised" );
child.forms['test']['variable'].value='hola';
child.document.forms['test'].submit();
}
</script>
</head>
<body>
<a href="#" onclick="openWindow2();">Entrar</a>
</body>
</html>
-----------------------------------------------------------------------
<html>
<head>
<title>Window 2</title>
</head>
<body>
<form name="test" action="http://www.midominio.com/pagina3.asp">
<input type="text" name="Variable" size="3" maxlength="3">
<input type="submit">
</form>
</body>
</html>
------------------------------------------------------------------------
El error que me aparece es:
child.forms.test es nulo o no es un objeto