var fDesc=new Array();
fDesc[0] = "CSV Converter Toolkit lets you convert information in Microsoft Outlook, ACT!, Lotus Notes, Google and Palm Desktop with CSV (comma separated value) files quickly and smartly.
It is an all-in-one software package contains the following components:
- OL-CSV Converter - Convert Outlook information and CSV files.
- PD-CSV Converter - Convert Palm Desktop information and CSV files.
- ACT-CSV Converter - Convert ACT! information and CSV files.
- LN-CSV Converter - Convert Lotus Notes information and CSV files.
- GG-CSV Converter - Convert Google Contacts and Calendar information with CSV files.";
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 = '';
}
}