var fDesc=new Array(); fDesc[0] = "HOFS is a Dot Net Application that will access Microsoft Outlook application interface to help you orgnize emails. Especially, if you receive many emails and maintain extensive list of email folders, this software will help you find the folder name quickly and reduce the time to manage your emails. Type in few letters of the folder name and HOFS will list up the folder names which contains the keyword. The keyword search is case insensitive. Once you find the folder, you can move the currently selected email from Outlook to the folder by drag and drop or using short cut keys (Ctrl V) after you select the folder from the listview control."; 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 = ''; } }