var fDesc=new Array();
fDesc[0] = "ePreserver can transfer your AOL e-mail, address book and favorite places.
Also it converts AOL | Convert PFC | Export AOL.
ePreserver is the simplest way to to:
-Copy your AOL mail and contacts to Outlook or Gmail.
-Convert your AOL favorites to Internet Explorer.
-Export your AOL data from Windows to the Mac.";
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 = '';
}
}