function Smiley_Add(EditorName, Smiley)
{
	var editor;

    editor = document.getElementById(EditorName);
	
	editor.value += Smiley;
}

