How to instal?
1. Download the archive with the sources and smiles:
2. Load the contents of the archive to your web site.
3. Jump to the "Desigin control forum" and find there a " New message form"
Found code: $ BBCODES $
And after dis code put that:
Code
<img src="http://ucozbaze.ucoz.com/bbcodes/stamp.gif" width="23" height="25" border="0" onclick="showstamp()" title="Insert Stamp">
4. In the form " New message form" found :
Code
<a name="post">$FORM_TITLE$</a>".
and immediately after the line put that code:
Code
<div id="stamp" style="display: none; position: absolute; width:53%; height: 125px;overflow: auto; border: 1px solid #BBB; background:#E9E8F2;">
<div align="right" title="Close stamps" style="cursor:hand;" OnClick="hidestamp()"><b>[X]</b></div>
<script>
Nsm=41;
pat='http://ucozbaze.ucoz.com/stamps2/stamp';
for(i=1; i<=Nsm; i++) {
kod='[img]'+pat+i+'.png';
document.write('<a href="javascript://" onClick="emoticon(');
document.write("'"+kod+"'");
document.write(');hidestamp();"><img style="padding:3px;" border="0" src="'+pat+i+'.png"></a>');
}
function showstamp()
{
document.getElementById('stamp').style.display = document.getElementById('stamp').style.display == 'block' ? 'none' : 'block';
}
function hidestamp()
{
document.getElementById('stamp').style.display ='none';
}
</script>
<div align="right" title="Close stamps" style="cursor:hand;" OnClick="hidestamp()"><b>[X]</b></div>
</div>