// "@(#)$RCSfile: functions.js,v $$Revision: 1.3 $$Date: 2006/04/04 22:15:53 $";
//
//  Author: Oleg Lypkan
//  E-mail: www.winchester@gmail.com
//  Homepage: http://winchester.dp.ua
//  Copyright 2006. All rights reserved
//  This software is free. I grant you a non-exclusive license to use it
//

function emoticon(text,FieldName)
{
    var txtarea = document.getElementsByName(FieldName)[0];
    text = ' ' + text + ' ';
    txtarea.value  += text;
    txtarea.focus();
}
