function getRecipientList(strInput)
{
	if(strInput.length == 0)
	{
		$('#recipientBox').hide();
	}
	else
	{
		$.post("/gc/ajax/recipient.php", {recipient: ""+strInput+""}, function(data){
			if(data.length >0)
			{
				$('#recipientBox').show();
				$('#recipientList').html(data);
			}
		});
	}
}
	
function getRecipient(value, userID)
{
	$('#recipient').val(value);
	$('#recipientID').val(userID);
	
	setTimeout("$('#recipientBox').hide();", 200);
}
