<HTML> <HEAD> <title>http://www.xtx.kr</title> </head> <body> <form name=exf1> 1<input type="checkbox" name="c1" onclick=showpicks() value="´Ü¹«Áö"><BR> 2<input type="checkbox" name="c2" onclick=showpicks() value="°¨ÀÚ"><BR> 3<input type="checkbox" name="c3" onclick=showpicks() value="½Ã±ÝÄ¡"><BR> 4<input type="checkbox" name="c4" onclick=showpicks() value="°í±¸¸¶"><BR> 5<input type="checkbox" name="c5" onclick=showpicks() value="¾çÆÄ"><BR> 6<input type="checkbox" name="c6" onclick=showpicks() value="»óÃß"><BR> <input type=text onfocus=blur() name=t1 value="" size=30> </form> <script type=text/javascript> function showpicks() { _s = ""; if (document.exf1.c1.checked) _s += "´Ü¹«Áö "; if (document.exf1.c2.checked) _s += "°¨ÀÚ "; if (document.exf1.c3.checked) _s += "½Ã±ÝÄ¡ "; if (document.exf1.c4.checked) _s += "°í±¸¸¶ "; if (document.exf1.c5.checked) _s += "¾çÆÄ "; if (document.exf1.c6.checked) _s += "»óÃß "; document.exf1.t1.value = _s; } </script> </body> </html>