lord2kim, вот полный код, он у вас работает?
Файл test.html:
<!DOCTYPE html>
<html><head><title></title></head><body>
<script type="text/javascript">
var map;
function a() {
map = window.open('b.html','new','width=1300 ,height=500');
map.onload = ab;
}
function ab() {
map.document.getElementById("txt").value="123";
map.focus();
}
</script>
<input type="button" value="1" onclick="a()">
<input type="button" value="2" onclick="ab()">
</body></html>
Файл b.html:
<!DOCTYPE html>
<html><head><title></title></head><body>
<input id="txt">
</body></html>