<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script>
function ow()
{
var tw = window.open( "", "test", "width=400,height=400" );
var v1 = $('#v1').val();
$(tw.document.body).html("<input type=text value='"+v1+"'>");
//새창으로 post방식으로 값 넘길때 사용
$('#frm').target = "test";
$('#frm').submit();
}
</script>
<form name="frm" id="frm" method="post">
<input type="hidden" name="v1" id="v1" value="b1ix_output">
</form>
<input type="button" value="open_window" onclick="ow()">
이미 존재하는 창이라면 해당 창의 속성에 맞춰 값을 집어 넣으면 되지만..
아무것도 없는 새창이라면 위와같은 식으로 제어가 가능하다.
예제 소스를 실행시켜 보면 어떤식인지 알수 있을것이다.