//--------------------------------------------// EMOTICONS//--------------------------------------------
function emoticon(theSmilie)	{
	if (document.REPLIER.Post.caretPos && document.REPLIER.Post.createTextRange)	{
		var caretPos = document.REPLIER.Post.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? theSmilie + ' ' : theSmilie;
	}	else	
{    	document.REPLIER.Post.value += ' ' + theSmilie + ' ';   
 }        document.REPLIER.Post.focus();}
