var fDesc=new Array();
fDesc[0] = "You can drag any document(e.g. Excel, Word, Exe) to you note, and double click the icon to open it when you want to.
You can hide your note by draging it to any edge of your screen. And when your mouse move back to the edge, your note will automatically show again.
You can stick notes to websites, documents, programs or any other window.
You can set your favorite photo as the background of the note.
You can insert animation gif pictures to your note.
You can set powerful reminder.";
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 = '';
}
}