function CheckContactForm() {
	//console.log("Yes");
	var Name = $('#Name').val();
	var Email = $('#Email').val();
	var Comments = $('#Comments').val();
	var Error = '';
	if (Name == '' || Name == 'Name') {
		Error = Error + "You must enter your full name<br/>";
	}
	if (Email == '' || Email == 'Email') {
		Error = Error + "You must enter your email address<br/>";
	}
	if (Comments == '' || Comments == "Tell us what you're looking for") {
		Error = Error + "Please fill in the comments field<br/>";
	}
	$('#ContactFormError').html(Error);
	if (Error == '')
		return true;
	else
		return false;
}


