(function () { 'use strict'; var that = document.getElementById("mhMailForm"), reset = document.getElementById("mhFormReset"), mhResetFunction = function () { var chk, data, rdo, obj, stO, selIdx; that.upfile.value = ''; that.name.value = ''; that.kana.value = ''; that.company.value = ''; that.tel.value = ''; that.fax.value = ''; that.mail.value = ''; that.mail_confirm.value = ''; that.product01.value = ''; that.number01.value = ''; that.product02.value = ''; that.number02.value = ''; that.product03.value = ''; that.number03.value = ''; that.term.value = ''; that.msg.value = ''; for (rdo = 0; rdo !== that.know.length; ++rdo) { that.know[rdo].checked = false; } that.detail.value = ''; return false; }; if (reset) { that.onreset = mhResetFunction; reset.onclick = mhResetFunction; } }());