Saludos tengo estas tres paginas en donde quiero hacer un pop up en donde abra una venta de un buscador y luego este se cargue en la pagina principal, con el pop up no hay problema pero lo que no consigo es que cargue los resultado de mi buscador en la pagina principal.. espero me puedan ayudar.
paginaprincipal.html
<html>
<head>
<meta http-equiv="Content-Language" content="es-ve">
<script language="JavaScript">
function Abrir_ventana (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=750, height=450, top=85, left=140";
window.open(pagina,"",opciones);
}
</script>
<title>Pagina Principal</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<body>
<p> </p>
<p><a href="javascript:Abrir_ventana('popup.htm')">ABRIR BUSCADOR</a></p>
</body>
</htm
l>
popup.htm
<html>
<head>
<title>PopUp</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p> </p>
<p> </p>
<p> </p>
<form method="POST" action="01.htm">
<p align="center">
<input type="text" name="T1" size="51" style="border: 1px solid #000000"><br>
<input type="submit" value="BUSCAR" name="B1"></p>
</form>
</body>
</html>
01.htm:
<html>
<head>
<meta http-equiv="Content-Language" content="es-ve">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>RESULTADO</title>
</head>
<body>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"><font size="5">RESULTADO</font></p>
</body>
</html>