To use smilies in the textfield from the sms system is realized with a little java script.
In the templates sms_schreiben or sms_lesen you found this code
PHP Code:
<!--#### Smilie part Start ###-->
<img src="images/smilies/zwinkern.gif" border="0" onclick="document.getElementById('nachricht').value += ' :) '">
<img src="images/smilies/smilelili.gif" border="0" onclick="document.getElementById('nachricht').value += ' ;) '">
<img src="images/smilies/motz.gif" border="0" onclick="document.getElementById('nachricht').value += ' :motz: '">
<br>
<img src="images/smilies/please.gif" border="0" onclick="document.getElementById('nachricht').value += ' :please: '">
.....................................
<!--#### Smilie part Stop ###-->
Change the images path to you own smilies and change the smilie syntax too. (in this part of code
value += ' :your own smilie syntax: '">
PcFreak