	/*	----------------------------------------------------------
		FORM VALIDATION
		----------------------------------------------------------	*/
		function validateForm(strFormType) {
			var boolFail		= false;
			var strError		= "";
			
			switch (strFormType.toLowerCase()) {
				case "contact" :
					if ($("#strFirstName").val() == "") {
						strError	+=	" - Please enter your first name\n";
						boolFail	= true;
					}
					if ($("#strLastName").val() == "") {
						strError	+=	" - Please enter your last name\n";
						boolFail	= true;
					}
					if ($("#strEmail").val() == "") {
						strError	+=	" - Please enter your e-mail address\n";
						boolFail	= true;
					}
					if ($("#strPhone").val() == "") {
						strError	+=	" - Please enter your phone number\n";
						boolFail	= true;
					}
					break;

				case "careers" :
					if ($("#strFirstName").val() == "") {
						strError	+=	" - Please enter your first name\n";
						boolFail	= true;
					}
					if ($("#strLastName").val() == "") {
						strError	+=	" - Please enter your last name\n";
						boolFail	= true;
					}
					if ($("#strEmail").val() == "") {
						strError	+=	" - Please enter your e-mail address\n";
						boolFail	= true;
					}
					if ($("#strPhone").val() == "") {
						strError	+=	" - Please enter your phone number\n";
						boolFail	= true;
					}
					break;
			}
			
			if (boolFail) {
				alert("The following errors were found when trying to submit this form.  Please correct them and try again.\n\n" + strError);
				return false;
			} else {
				return true;
			}
		}