function check()
{
	if(document.send_comment.s_email.value != "")
	{
		if(!isEmailAddr(document.send_comment.s_email.value))
		{
			alert("이메일 형식이 올바르지 않습니다. 예) your_id@domain.com");
			document.send_comment.s_email.focus();
			return false;
		}
	}
	
	if(document.send_comment.s_name.value == "")
	{
		alert("이름을 입력해 주세요.");
		document.send_comment.s_name.focus();
		return false;
	}
	
	if(document.send_comment.s_comments.value == "")
	{
		alert("내용을 입력해 주세요.");
		document.send_comment.s_comments.focus();
		return false;
	}
}