function checkFilled() {
	var filled = 0
	var a = $('#full_name').val();
	a = a.replace(/^\s+/,""); // strip leading spaces
	if (a.length > 0) {filled ++}

	var b = $('#email').val();
	b = b.replace(/^\s+/,""); // strip leading spaces
	if (b.length > 0) {filled ++}

	var c = $('#taqqy').val();
	c = c.replace(/^\s+/,""); // strip leading spaces
	if (c.length > 0) {filled ++}

	if (filled == 3) {
		$('#submitForm').attr('disabled', false);
	}  else  {
		$('#submitForm').attr('disabled', true);
	}
}