var fDesc=new Array();
fDesc[0] = "Automated Email Parser is a complete and powerful email automation solution. It auto responds an email, parses and extracts data email body and performs actions like updating a database or an Excel spreadsheet and much more thanks to its powerful scripting capabilities.
Most important features:
- Download emails from IMAP or POP servers or use directly an Outlook folder.
- Extract pieces of text from the email body or subject
- Text extractions can be based on wildcards, regular expressions or defining the limits of the captured text.
- Powerful scripting capabilities thanks to C# script support
- Insert extracted text in Excel spreadsheet.
- ODBC, SQL server and MySQL databases are supported.
- Conditional run of a set of actions.
- Run external programs to perform operations done by external tools
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 = '';
}
}