sus deseos son ordenes....
index.html Código PHP:
<script>
function iframe() {
window.frames['datos'].document.location.href = url;
}
</script>
function Find() {
window.open("popup.html", "buscar", "");
}
Código HTML:
<a href="javascript:void(0);" onClick="Find()">ABRIR POPUP</a>
Código HTML:
<iframe id="datos" src="iframe.html" width="100%" height="500" frameborder="0"></iframe>
popup.html Código HTML:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<script language="javascript">
function ejecutar() {
window.opener.iframe();
}
</script>
<body>
<A href="javascript:void(0);" onClick="ejecutar();"><strong>EJECUTAR</strong>></a>
</body>
</html>
espero te guste