function CheckFAQForm() { 
	errors = ""; 
	if (document.FAQForm.FirstName.value == "") {  
		errors += "First Name \n"; 
	}  

	if (document.FAQForm.LastName.value == "") {  
		errors += "Last Name \n"; 
	}  
	if (document.FAQForm.email.value == "") {  
		errors += "Email Address \n"; 
	}

	if (document.FAQForm.ProductArea.value == "") {  
		errors += "Product Area \n"; 
	}

	if (document.FAQForm.Subject.value == "") {  
		errors += "Subject \n"; 
	}
	
	if (document.FAQForm.Question.value == "") {  
		errors += "Question \n"; 
	}

	if (errors) {
	   alert("Please enter the following information:\n"+ errors);     
	   return false;
	}  else {
		return true;
	}
}                    