function register_comment(){
	var o_form=document.CommentInputForm;
	if(o_form.comment_name.value.replace(/ /,"")==""){
		alert("お名前に入力がありません。");
		o_form.comment_name.focus();
		retrun;
	}
	if(o_form.comment_text.value.replace(/ /,"")==""){
		alert("コメントに入力がありません。");
		o_form.comment_text.focus();
		retrun;
	}

	if(o_form.comment_name.value.replace(/　/,"")==""){
		alert("お名前に入力がありません。");
		o_form.comment_name.focus();
		retrun;
	}
	if(o_form.comment_text.value.replace(/　/,"")==""){
		alert("コメントに入力がありません。");
		o_form.comment_text.focus();
		retrun;
	}

	o_form.submit();
}
