// JavaScript Document
function checkFormContact(){
	  
	  if (document.contact.contact_fullname.value.length == 0){
			alert("Mời bạn nhập họ tên !");
			document.contact.contact_fullname.focus();
			return false;
   	   }
	   
	   if(document.contact.contact_email.value.length > 0){
		   if ((document.contact.contact_email.value.length < 9) || (document.contact.contact_email.value.indexOf('@') == -1) || (document.contact.contact_email.value.indexOf('.') == -1)){
				alert("Địa chỉ email không hợp lệ !");
				document.contact.contact_email.focus();
				return false;
			}
	   }else{
		    if (document.contact.contact_email.value.length == 0){
			alert("Mời bạn nhập địa chỉ email !");
			document.contact.contact_email.focus();
			return false;
   	 	  	}
	   }
	   
	   
	    if (document.contact.contact_name.value.length == 0){
			alert("Mời bạn nhập tiêu đề !");
			document.contact.contact_name.focus();
			return false;
   	   }
  		
		if(isNaN(document.contact.contact_phone.value)){
			alert("Điện thoại phải là số !");
			document.contact.contact_phone.focus();		
			return false;
		}
	
  	   if (document.contact.contact_content.value.length == 0){
			alert("Nội dung liên hệ trống !");
			document.contact.contact_content.focus();
			return false;
   	   }
	   
	   return true;
}
