function checkContact() {
	if ((document.getElementById('name').value != "") && (document.getElementById('email') != "")) {
		return true;
	} else {
		jQuery.facebox("Please Fill Out All Required Fields.");
		return false;
	}
}
