(function () { 'use strict'; var that = document.getElementById("mhMailForm"), reset = document.getElementById("mhFormReset"), mhResetFunction = function () { var chk, data, rdo, obj, stO, selIdx; for (rdo = 0; rdo !== that.content.length; ++rdo) { that.content[rdo].checked = false; if (that.content[rdo].value === '勤務内容') { that.content[rdo].checked = true; break; } } that.name.value = ''; that.kana.value = ''; that.tel.value = ''; that.mail.value = ''; that.mail_confirm.value = ''; that.question.value = ''; return false; }; if (reset) { that.onreset = mhResetFunction; reset.onclick = mhResetFunction; } }());