function addRecipient(theList)
{
	var textdata = document.forms[0].recipientList.value;
	for (i = 0; i < theList.length; i++)
	{
		if (theList[i].selected)
		{
			if (textdata != "")
			{
				textdata = textdata + "," + theList[i].value;	
			}
			else
			{
				textdata = textdata + theList[i].value;		
			}
		}
	}
  	document.forms[0].recipientList.value = textdata;
}
