fcolor='#ffee77';
tcolor='#ffffff';

/* フォームカラークリア */
function chkInit(fOBJ) {
   fOBJ.style.backgroundColor=tcolor;
}

/* 必須チェック */
function chkBlank(fOBJ) {
   if(!fOBJ.value){
      fOBJ.style.backgroundColor=fcolor;
      return false;
   }else{
      return true;
   }
}

/* 数値チェック(.含む) */
function chkNumber(fOBJ) {
   if(fOBJ.value.match(/[^0-9.]+/)){
      fOBJ.style.backgroundColor=fcolor;
      return false;
   }else{
      return true;
   }
}

/* 半角英数字チェック */
function chkHalfSize(fOBJ) {
   if(fOBJ.value.match(/[^!-~]+/)){
      fOBJ.style.backgroundColor=fcolor;
      return false;
   }else{
      return true;
   }
}

/* 全角英数字チェック */
function chkFullSize(fOBJ) {
   if(fOBJ.value.match(/[!-~]+/)){
      fOBJ.style.backgroundColor=fcolor;
      return false;
   }else{
      return true;
   }
}

/* Emailチェック */
function chkEmail(fOBJ) {
   if(!fOBJ.value){
      fOBJ.style.backgroundColor=tcolor;
      return true;
   }
   if(!fOBJ.value.match(/^\w.*@.+\..+\w$/)){
      fOBJ.style.backgroundColor=fcolor;
      return false;
   }else{
      return true;
   }
}

