var fDesc=new Array();
fDesc[0] = "Developer's description:
Easy to use editor for keeping notes or addresses.
New review:
12Ghosts Notepad is an easy to use text editor for keeping notes or addresses.
12Ghosts Notepad offers many cool features such as unlimited text size, font formatting, and easy-to-use editing hotkeys.
12Ghosts Notepad has interesting automation for saving (every 1/2 second), copying (on selection), scrolling (move mouse to top or button), and closing (on focus lost). With a bar to open pages with one click, and do so at the exact same position you left typing last time, it is an attractive editor worth trying.
Final note:
12Ghosts Notepad - a friendly, neat and handy text editor with many cool features.";
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 = '';
}
}