var fDesc=new Array();
fDesc[0] = "TurboNote+ desktop sticky notes help keep you on track, whether it's reminders about your dental appointment or a quick heads-up message to staff about a morning meeting.
This trim, easy-to-use program makes your life easier. Keep important information at your fingertips, set up reminders and alarms, colour-code your notes for different subjects, avoid email bottlenecks with TurboNote+ messaging.
Try it — you can use the fully functional latest version free for a month. (Helpful download instructions here).
Save just 12 minutes a day — like most of our users — and you'll pay for TurboNote+ in only two weeks. (Check out the time and money you'll save with our easy calculator.)";
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 = '';
}
}