﻿
	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.diachi.value=='')
		{
			alert('Vui lòng cho địa chỉ');
			document.l_he.diachi.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.dienthoai.value=='')
		{
			alert('Vui lòng cho số điện thoại');
			document.l_he.dienthoai.focus();
			return false;
		}
		
		
		return true;
	}
	


