function submitCheck(msg){
  if(window.confirm(msg)){
    return true;
  } else {
    window.alert('操作をキャンセルしました。');
	return false;
  } 
}
