Este codigo funciona en IE, pero no en Mozila...
por que??????
pruebaIframe.html
<html>
<head>
<script language="JavaScript">
function B() {
window.top.Contenedor.value = document.f.txtorigen.value;
}
</script>
</head>
<body>
Este es el Iframe<br>
<Form name="f">
<input type="text" name="txtorigen" id="txtorigen"><br>
<input type="button" onClick="B();" value="BOTON">
</form>
</body>
</html>