var validate=new Factory.Validate([$("frm_userid"),$("frm_passwd"),$("frm_passwd_confirm"),$("frm_nickname"),$("frm_email"),$("frm_url"),$("frm_urlnone")]);$("form_join").onsubmit=function(){if(!validate.checkAll()){return false}if(!this.elements.agreewithterms.checked){alert("약관에 동의하셔야 합니다.");return false}var a=this.elements.redirect.value;this.request({onSuccess:function(b){try{parent&&(parent.Factory.onLogin()||parent.Factory.procLogin(b.responseText.evalJSON()))}catch(c){}if(a){location.href=a}else{setTimeout("parent.Factory.Popup.hide();",1)}},onFailure:function(b){Factory.error(b)}});return false};$("frm_userid").focus();