<script type="text/javascript">
function pop(obj) {
wobj = window.open("", "pop","scrollbars=yes,width=480,height=360");
obj.target = "pop";
wobj.focus();
return true;
}
</script>
任意の箇所に下記を記述。
<form method="post" action="任意" target="pop" onsubmit="return pop(this)">














