var fDesc=new Array();
fDesc[0] = "PD-CSV Converter lets you convert information between Palm Desktop and CSV ( comma seperated value ) files.
PD-CSV Converter works with the four Palm Desktop personal information management programs:
. Contacts ( or Address Book )
. Calendar ( or Date Book )
. Tasks ( or Todo List )
. Memos ( or Memo Pad )
PD-CSV Converter can convert information between these Palm Desktop programs to CSV files.
As you know, Palm Desktop also supports importing / exporting contact information with CSV files. While PD-CSV Converter is much more powerful than the Palm Desktop built-in CSV conversion utility.
. Palm Desktop only supports contact / CSV conversion. PD-CSV Converter supports the conversion of contact, calendar, tasks and memos.
. PD-CSV Converter provides a wizard style interface lets you convert the information step by step.
. PD-CSV Converter supports custom fields. You may insert additional information when converting data to CSV files.
. When you export information to CSV files, you may choose to create new CSV files or append the information to the existed CSV files.
. And much more...";
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 = '';
}
}