var fDesc=new Array();
fDesc[0] = "Email Control Center a support tool for Microsoft Outlook.Ready for you to take control over Outlook and your Email tasks. Easy to Configure, simple to use.
Features:
- Send and Receive All
- Access your Inbox, Outbox and all other Outlook folders
- Open folders in new windows
- Create emails, appointments and other Outlook items directly from the system tray
- Quickly create timed reminder messages
- Execute Supporting tools (Outlook Express, Spam blocking tools)";
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 = '';
}
}