	function get_in_touch_action() {
	  var git_error = '';
	  var git_name_value = trim(document.getElementById("git_name").value);
	  var git_email_value = trim(document.getElementById("git_email").value);
	  var git_email2_value = trim(document.getElementById("git_email2").value);	  
	  if (git_name_value == '') {
		git_error += 'Name is required.\n';
	  }
	  if (git_email_value != git_email2_value) {
		git_error += 'Email and Confirming Email are not the same.\n';
	  }	  
	  if (git_email_value == '') {
		git_error += 'Your Email is required.\n';
	  }
	  else if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(git_email_value)) {
		git_error += 'Your Email is incorrect.\n';
	  }
	  if (git_error == '') {
		jQuery.post(
		  get_in_touch_action_page,
		  {
			GetInTouchAction: 'submit',
			git_name: git_name_value,
			git_email: git_email_value
		  },
		  get_in_touch_action_success
		);
	  }
	  else {
		alert(git_error);
	  }
	}
	function get_in_touch_action_success(data) {
	  document.get_in_touch_form.reset();
	  alert("Your data was successfully sent. Thank You.");
	}
	function trim(str) {
	  return str.replace(/^\s+|\s+$/g,"");
	}

