function requiredCheck(strVal,strErr) {
if(strVal=="" || strVal==undefined){
return strErr + "は必須入力です。 \n";
}else{
return "";
}
}
