var cd;

onload = init;

function init() {
  //初期設定をする関数
  cd = document.getElementById("cd");

  document.form1.onsubmit = function (){return ( dataCheck(cd.value, "PREF_CD") );}

}


function dataCheck(str, name){
  //データをチェックする関数
  if (str.length == 0 || str.match(/[^0-9]/)) {
    alert(name + " は半角数字を入力してください。");
    return false;
  }
  return true;
}

