var fDesc=new Array();
fDesc[0] = "Realtime Singlish is a free, highly customizable transliteration software. All you should do is to type according to the scheme that is provided(which is customizable).
Main features:
- Singlish to sinhala Unicode text in realtime(directly sends Unicode characters to the currently active application through Windows API).
- Releases all standard smilies so you can chat in Sinhala, without any hassle!
- Features a helper that will show you what the matches for what you are typing.
- Highly customizable singlish to sinhala scheme.
- Support for every application that runs on MS Windows(you may need to shift to Clipboard output Engine)";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}