var fDesc=new Array();
fDesc[0] = "Export your address book to other applications. Keep a local copy - in the application or format You choose. And, if you are frustrated with AOL, export your address book and say bye bye to AOL.
Summary of the ACtoCDF process:
- Add the 'Generic / Text Only' printer to your Windows PC. Complete instructions included.
- Run AOL 8 or AOL 9 on your PC (not web mail)
- Using the AOL address book print function, print your address entries to the printer file.
- Using the 'printed' file as the input to ACtoCDF, convert your data to a Comma Delimited File (comma separated values).
- Import the comma separated values file to Outlook Express (Detailed instructions included), Outlook, or other address book or contacts applications.";
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 = '';
}
}