var fDesc=new Array();
fDesc[0] = "Create notes from the Post-it® Desktop Dispenser, from any Memoboard, or from the note icon in the Taskbar.
If you want to create one of your template notes, right-click the Desktop or Memoboard dispensers and select your choice of note.
To display the note toolbars, click the Note Toolbar Button at the top-left corner of a note.";
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 = '';
}
}