{
var chkRule = "137137135";
var ThisVal1=document.form1.social_no1.value;
var ThisVal2=document.form1.social_no2.value;
var ThisVal3=document.form1.social_no3.value;
var strCorpNum = ThisVal1 + ThisVal2 + ThisVal3; // 사업자번호 10자리
var step1, step2, step3, step4, step5, step6, step7;
step1 = 0; // 초기화
for (i=0; i<7; i++)
{
step1 = step1 + (strCorpNum.substring(i, i+1) *chkRule.substring(i, i+1));
}
step2 = step1 % 10;
step3 = (strCorpNum.substring(7, 8) * chkRule.substring(7, 8))% 10;
step4 = strCorpNum.substring(8, 9) * chkRule.substring(8, 9);
step5 = Math.round(step4 / 10 - 0.5);
step6 = step4 - (step5 * 10);
step7 = (10 - ((step2 + step3 + step5 + step6) % 10)) % 10;
if (strCorpNum.substring(9, 10) != step7) // 결과 비교 판단
{
alert("사업자 등록 번호에 이상이 있습니다.
확인하시고 다시 입력해
주세요. ")
document.form1.social_no1.value = "";
document.form1.social_no2.value = "";
document.form1.social_no3.value = "";
document.form1.social_no1.focus();
return false;
}
return true;
}
Posted by 홍반장