// ¾à°ü µ¿ÀÇ Æûüũ function com_member_agreementCheck() { return com_member_agreementNewCheck(); } // ¾à°ü µ¿ÀÇ Æûüũ - ½Å±Ô¹öÀü function com_member_agreementNewCheck() { try { if(document.getElementsByName('com_member_check_agree')[0].checked == false) { alert('You can sign up as a member only if you agree to the terms and conditions.'); return false; } } catch(e) {} try { if(document.getElementsByName('com_member_check_safe')[0].checked == false) { alert('You can sign up as a member only if you agree to the privacy policy.'); return false; } } catch(e) {} try { if(document.getElementsByName('com_member_check_collection')[0].checked == false) { alert('You must agree with the purpose of collecting and using your personal information in order to register as a member.'); return false; } } catch(e) {} }