function indxlgn_chk(opt){ if(opt == "1"){ if(event.keyCode == 13){ if (!document.indxlgnfrm.ID.value) { alert("죄송합니다. 아이디(ID)를 입력하세요!!!"); document.indxlgnfrm.ID.focus(); return; } if (!document.indxlgnfrm.Passwd.value) { alert("죄송합니다. 비밀번호를 입력하세요!!!"); document.indxlgnfrm.Passwd.focus(); return; } document.indxlgnfrm.submit(); }else{ return false; } }else{ if (!document.indxlgnfrm.ID.value) { alert("죄송합니다. 아이디(ID)를 입력하세요!"); document.indxlgnfrm.ID.focus(); return; } if (!document.indxlgnfrm.Passwd.value) { alert("죄송합니다. 비밀번호를 입력하세요!"); document.indxlgnfrm.Passwd.focus(); return; } document.indxlgnfrm.submit(); } }