function smiley(theFieldName,code)
{
var theField;
theField = MM_findObj(theFieldName);
	if (code.length > 0)
	{
		if (theField != null)
		{
			theField.value += code;
		}
	}
}

function doSubmit(formName)
{	
var theField;
theField = MM_findObj(formName);
	if (theField != null)
	{
		//addForm.reset();
		//document.addForm.submit() ;
		theField.submit();
	}
}