var fDesc=new Array();
fDesc[0] = "Natara DayNotez, the premier award winning Palm journaling application, is now available for the Pocket PC OS. Whether you call it note taking, journaling or simply want to keep a daily diary, DayNotez is for you. It is the perfect replacement for the journal page from your old paper planner.
Also included is the DayNotez Desktop application and ActiveSync synchronization component giving you instant access to your notes from either your PC or Pocket PC.
DayNotez Desktop, the PC companion application has all of the powerful features found in the Pocket PC version and also adds customizable views and spell checking. The DayNotez ActiveSync module keeps both perfectly in sync.";
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 = '';
}
}