var fDesc=new Array();
fDesc[0] = "Simple Notes is a desktop notepad with tons of features and customization options to make your notes look, feel and even sound great.
Simple Note theme color can be changed. There is a variety of colors to choose from, like red, green, yellow, gray ,magenta, purple , etc.
Several notes can be opened in the same time , using the ''Open another note'' option.
The note's transparency can be increased or decreased, and all the notes can be saved as a .txt document.";
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 = '';
}
}