//送信フラグ
var Is_Send = false;

/*
* confirmSend
* 送信するか否か確認する
*
* @return true / false
*/
function confirmSend(){
	if (confirm("It transmits. Is it all right?")){
		return(true);
	} else {
		return(false);
	}
}

function checkForm(theForm){

	if( theForm.Name.value == "" || theForm.Name.value == " "){
		alert( "Please input a First Name." );//
		theForm.Name.focus();//
		return false;
	}
	if( theForm.Kana.value == "" ){
		alert( "Please input a Last Name." );//
		theForm.Kana.focus();//
		return false;
	}
	if( theForm.Syamei.value == "" ){
		alert( "Please input the Company." );//
		theForm.Syamei.focus();//
		return false;
	}
	if( theForm.Adr.value == "" ){
		alert( "Please input the Address." );//
		theForm.Adr.focus();//
		return false;
	}
	if( theForm.Zip.value == "" ){
		alert( "Please input a Zip Code." );//
		theForm.Zip.focus();//
		return false;
	}
	if( theForm.Tel.value == "" ){
		alert( "Please input a Phone Number." );//
		theForm.Tel.focus();//
		return false;
	}
	if( theForm.Fax.value == "" ){
		alert( "Please input a Facsimile Number." );//
		theForm.Fax.focus();//
		return false;
	}
	if( theForm.Mail.value == "" ){
		alert( "Please input a E-mail address." );//
		theForm.Mail.focus();//
		return false;
	}
	if( theForm.Toi.value == "" ){
		alert( "Please input the Message." );//
		theForm.Toi.focus();//
		return false;
	}
	
	return true;
}