function form_Check(){ var agree=document.getElementById("ck_btn"); if(estimate.e_name.value == ''){ alert("이름을 입력해주세요."); estimate.e_name.focus(); return; } if(estimate.e_company.value == ''){ alert("회사명을 입력해주세요."); estimate.e_company.focus(); return; } if(estimate.e_tel.value == ''){ alert("전화번호를 입력해주세요."); estimate.e_tel.focus(); return; } if(estimate.e_mail.value == ''){ alert("E-mail을 입력해주세요."); estimate.e_mail.focus(); return; } if(estimate.e_txt.value == ''){ alert("내용을 입력해주세요."); estimate.e_txt.focus(); return; } if(agree.checked==false){ alert("개인정보 수집 및 이용에 동의해주세요."); return; } if(!confirm('문의메일을 보내시겠습니까?')) return; estimate.submit(); }