// JavaScript Document
function check()
{
	if(document.frmhoidap.Ten.value=="")
	{
		alert("Bạn phải nhập họ tên!");	
		document.frmhoidap.Ten.focus();
		return false;
	}
	if(document.frmhoidap.Email.value=="")
	{
		alert("Bạn phải nhập Email hợp lệ!");	
		document.frmhoidap.Email.focus();
		return false;
	}
		if(document.frmhoidap.Dienthoai.value=="")
	{
		alert("Bạn phải nhập số điện thoại hợp lệ!");	
		document.frmhoidap.Dienthoai.focus();
		return false;
	}
	
	
		if(document.frmhoidap.Noidung.value=="")
	{
		alert("Nội dung không để rỗng!");	
		document.frmhoidap.Noidung.focus();
		return false;
	}
		if(document.frmhoidap.chude.value==0)
	{
		alert("Bạn chưa chọ chủ đề hỏi đáp!");	
		document.frmhoidap.chuđề.focus();
		return false;
	}
	return true;
}
