﻿
	function docheck()
	{
		if(document.l_he.hoten.value=='')
		{
			alert('Vui lòng nhập họ và tên');
			document.l_he.hoten.focus();
			return false;
		}

		if(document.l_he.email.value=='')
		{
			alert('Vui lòng nhập email');
			document.l_he.email.focus();
			return false;
		}
		if (!checkemail(document.l_he.email.value))
		{
			alert("Vui lòng nhập lại địa chỉ email");
			document.l_he.email.focus();
			return false;
		}
			
		
		if(document.l_he.noidung.value=='')
		{
			alert('Vui lòng nhập nội dung câu hỏi của bạn');
			document.l_he.noidung.focus();
			return false;
		}
		return true;
	}
	


