function checkInput(theForm){
	var name		= theForm.elements[1].value;
	var tel			= theForm.elements[4].value;
	
	if(name.length <= 1){
		alert("氏名の入力をお願いいたします");
		return false;
	}
		
	if(tel.length <= 1){
		alert("電話番号の入力をお願いいたします");
		return false;
	}
	return true;
}
