<HEAD>
<SCRIPT>
var winopen=0;        // »õ âÀÌ ¿­·Á Àִ°¡ ?
function act() {
  if (winopen) newWin.close();
  stats=fname.stats.value;
//  stats='width=600,height=400,toolbar,status,location,directories,menubar,titlebar=0';
  newWin=window.open ('','newWin',stats);  // window ¿­±â
  newWin.document.write('<BODY bgColor="darkgreen" text="yellow">');
  newWin.document.write('<CENTER><H5>°£´ÜÇÑ »õâ¿­±â ¿¹Á¦</H5>');

  newWin.document.write('<DIV title="stats string">stats=\"'+stats+'\"</DIV><FORM>');
  newWin.document.write('<INPUT type="button" value="´Ý±â" onClick="self.close()"><BR>');
  newWin.document.write('<SCRIPT>document.write(self.location)</SCRIPT></FORM>');
  winopen=1;        // âÀÌ ¿­·Á Àִٴ ǥ½Ã
}
</SCRIPT>
</HEAD>

<BODY>
<FORM name="fname">
<TABLE border=0 width=100% style="border:solid 1 aaeeff">
<TR><TD colspan=3><INPUT name="stats" type="text" size="80"
  value="height=400,width=600,top=100,left=200,location=yes,toolbar=1,menubar">
<TR><TD align=right><INPUT type="button" value=" »õ  â     ¿­  ±â " onClick="act()"></TD>
<TD width=4%></TD>
<TD><INPUT type="reset" value="ÃʱⰪÀ¸·Î ȯ¿ø"></TD></TR>
</TABLE>
</FORM>
</BODY>