<!--
	function checkFormEmailQuestions()
	{
		setFormSID(document.forms['emailQuestions']);
		
		contactName  = document.forms['emailQuestions'].elements['contactName'];
		emailAddress = document.forms['emailQuestions'].elements['emailAddress'];
		emailSubject = document.forms['emailQuestions'].elements['emailSubject'];
		questions    = document.forms['emailQuestions'].elements['questions'];
		
		// Validate Contact Name
		if (!isFormContactNameValid(contactName, true, "Contact Name", 2))
			return false;
	
		// Validate Email Address
		if (!isFormEmailAddressValid(emailAddress, true, "Your Email Address"))
			return false;		
		
		// Validate Email Subject
		if (!hasFormFieldBeenFilledIn(emailSubject, "Email Subject", 2))
			return false;	
		
		// Validate Questions
		if (!hasFormFieldBeenFilledIn(questions, "Your questions", 5))
			return false;
		
		var confirmMesage = new String();
		confirmMesage =   "Please confirm that you want to submit the following details:\n\n"
										+ "Contact Name: " + contactName.value + "\n"
										+ "Contact Email Address: " + emailAddress.value + "\n"
										+ "Email Subject: " + emailSubject.value + "\n\n"
										+ "Message (Questions) to be submitted:\n" + questions.value;										
		
		if (!confirm(confirmMesage))
			return false;
			
		return true;
	}
	
//-->