var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to extract lines from Outlook e-mails following user specified criteria. The software will extract e-mails from the Outlook application or the user can choose a PST file. Check boxes allow choice of the Outlook folder/s to be used (inbox, sent etc.) and fields (From or Body). The user can then choose to extract from all e-mails or by various parameters: all lines containing (or not) specified text, a text string starting and ending with specified characters or lines by number. The results can be saved as a text or a list separated with commas. Outlook 2000 (Not Outlook Express) or higher required."; 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 = ''; } }