function formCheck(mode){
	var f = document.myform;

	var check = f.name.value;
	if(check == ""){
		alert(errorStr['msgname']);
		return false;
	}

	var check = f.namekana.value;
	if(check == ""){
		alert(errorStr['msgnamekana']);
		return false;
	}

	var check1 = f.zipcode1.value;
	var check2 = f.zipcode2.value;
	if(check1 == ""){
		alert(errorStr['msgzipcode1']);
		return false;
	}
	if(check2 == ""){
		alert(errorStr['msgzipcode1']);
		return false;
	}
	if(!check1.match(/^[0-9]{3}$/)){
		alert(errorStr['msgzipcode2']);
		return false;
	}
	if(!check2.match(/^[0-9]{4}$/)){
		alert(errorStr['msgzipcode2']);
		return false;
	}
	var check = check1 + "-" + check2;
	if(!check.match(/^[0-9-]{8}$/)){
		alert(errorStr['msgzipcode2']);
		return false;
	}

	var check = f.area.value;
	if(check == ""){
		alert(errorStr['msgarea']);
		return false;
	}

	var check = f.address.value;
	if(check == ""){
		alert(errorStr['msgaddress']);
		return false;
	}

	var check = f.tel.value;
	if(check == ""){
		alert(errorStr['msgtel1']);
		return false;
	}
	if(!check.match(/^[0-9-]{8,16}$/)){
		alert(errorStr['msgtel2']);
		return false;
	}

	var check = f.mail.value;
	if(check == ""){
		alert(errorStr['msgmail1']);
		return false;
	}
	if(check.match(/[!"#$%&'\(\)=\\|,:;^\[\]\{\}`*?<>]/)){
		alert(errorStr['msgmail2']);
		return false;
	}
	if(!check.match(/.+@.+\..+/)){
		alert(errorStr['msgmail2']);
		return false;
	}
/*
	var check = f.comment.value;
	if(check == ""){
		alert(errorStr['msgcomment']);
		return false;
	}
*/
//	if(confirm(errorStr['msgconfirm'])){
		return true;
//	}else{
//		return false;
//	}


}