
function aqp_post(the_form)
{
	$('#aqp-icon').show();
	$('#quickpost form input').attr('disabled', 'disabled');

	var values = {
		form_sent: 1,
		form_user: the_form.form_user.value,
		req_message: the_form.req_message.value,
		last_post_id: aqp_last_post_id,
		post_count: aqp_post_count
	};
	
	$.post(aqp_url, values, function(data) {aqp_post_data(data)});
	
	return false;
}

function aqp_post_data(data)
{
	if (data.substring(0, 4) != '<div')
		alert(data);
	else
		$('#aqp').html(data);
	
	$('#aqp-icon').hide();
	$('#quickpost form input').removeAttr('disabled');
	document.getElementsByName('req_message')[0].value = '';
}