function check_leadbox()
{
	$("#alert span").hide();

	if ($("#fullname").val() == "")
	{ 
		$("#fullname_alert").show();
		$("#fullname").focus();
		return false;
	}
	
	if ($("#subject").val() == "")
	{ 
		$("#subject_alert").show();
		$("#subject").focus();
		return false;
	}
	
	if ($("#text").val() == "")
	{ 
		$("#text_alert").show();
		$("#text").focus();
		return false;
	}
	
	$('#leadbox_form').submit();
	
};


