function sendForm() {
	var from_email = $("#tell_my_email").val();
	var to_email = $("#tell_my_coworker").val();
	var send_copy = $("#tell_my_copy").val();
	emailpat = /^([a-zA-Z0-9])+([\.a-zA-Z0-9_-])*@([a-zA-Z0-9])+(\.[a-zA-Z0-9_-]+)+$/;

	if (from_email == '') {
		return false;
	};

	if (to_email == '') {
		return false;
	};

	if (send_copy == '') {
		return false;
	};

	var data = 'from_email=' + from_email + '&to_email=' + to_email +'&send_copy=' + send_copy;
	
	alert(data);

	$.ajax({
		url: "php/coworker_process.php",
		type: "GET",
		data: data,
		cache: false,
		success: function (html) {
			if (html==1) {
				alert('Send mail success');

				//hide the form
				$('.content .promos #third.promo .eform').hide();

				//show the success message
				$('.content .promos #third.promo .valid').show();

			} else alert('Sorry, unexpected	error. Please try again	later.');
		}

	});

	return false;
	alert('lord knows');
};