//ÁÖ¹Îµî·Ï¹øÈ£ Ã¼Å©
function Jumin_chk(it) {
  IDtot = 0;
  IDAdd="234567892345";

  for(i=0;i<12;i++) {
  IDtot=IDtot+parseInt(it.substring(i,i+1))*parseInt(IDAdd.substring
  (i,i+1));
  }
  IDtot=11-(IDtot%11);
  if(IDtot==10) {
  IDtot=0;
  }

  else if(IDtot==11){
  IDtot=1;
  }
  if(parseInt(it.substring(12,13))!=IDtot) return true;
} 
  
function Check(form) {
	jumin=document.form.perso_1.value+document.form.perso_2.value;

if(!(jumin=='1111112222222')) {
	if(Jumin_chk(jumin)){
		alert("ÁÖ¹Îµî·Ï¹øÈ£¸¦ Á¤È®È÷ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À!");
		document.form.perso_1.value="";
		document.form.perso_2.value="";
		document.form.perso_1.focus();
		return true;
	}
}
}
