/* 숫자 정규포현식 */
    var regINT = /^\d+$/;

   /* 사용예 */
    if(!regINT.test(fm.phone2.value)) return ErrControl("연락처는 숫자만 입력가능합니다.","phone2");