/* ½ºÅ©·Ñ ¾ø´Â â¿­±â */ function all_open(argurl,wname, intleft, inttop, intwidth, intheight) { window.open(argurl,wname,'toolbar=no,location=no,left=' + intleft + ', top=' + inttop + ', directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=' + intwidth + ',height=' + intheight); } /*½ºÅ©·Ñ Àִ â¿­±â */ function scroll_open(argurl,wname, intleft, inttop, intwidth, intheight) { window.open(argurl,wname,'toolbar=no,location=no,left=' + intleft + ', top=' + inttop + ', directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=' + intwidth + ',height=' + intheight); } /* È­¸é Áß°£¿¡¼­ ¿­±â */ function mid_open(argurl, wname, intwidth, intheight, scroll) { var winl = (screen.width - intwidth) / 2; var wint = (screen.height - intheight) / 2; winprops = 'height='+intheight+',width='+intwidth+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable' win = window.open(argurl, wname, winprops) if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } } /* °¡·Î¸¸ È­¸é Áß°£¿¡¼­ ¿­±â */ function wid_open(argurl, wname, intwidth, intheight, scroll) { var winl = (screen.width - intwidth) / 2; winprops = 'height='+intheight+',width='+intwidth+',top=0,left='+winl+',scrollbars='+scroll+',resizable' win = window.open(argurl, wname, winprops) if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } } /* ·Î±×ÀΠüũ */ function checkidform(form) { if (!form.userid.value) { alert('¾ÆÀ̵𸦠ÀÔ·ÂÇϼ¼¿ä'); form.userid.focus(); return false; } if (!form.passwd.value) { alert('ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇϼ¼¿ä'); form.passwd.focus(); return false; } return true; } /* ¾Æ·¡ »óŹٿ¡ ¸µÅ©°æ·Î´ë½Å ³ªÅ¸³¯ ¸Þ½ÃÁö */ /* var text = "Welcome to Han's Uniform"; function status_msg() { window.status = text; timerID= setTimeout("status_msg()", 0); } window.onload=status_msg; */