var fDesc=new Array();
fDesc[0] = "Attachment Options is a COM add-in for Outlook 2000 SP3 or higher, Outlook 2002, Outlook 2003 and Outlook 2007 that provides a user interface for changing which file types are restricted as Level 1 attachments.
Level 1 attachments are hidden by Outlook, and cannot be seen, saved or opened from Outlook items.
Moving an attachment extension to Level 2 enables the user to see the attachment and to save it to the file system.
The attachment saved to the file system can later be opened by the user.
Note: The ability to change which file types are Level 1 may not be available if the user is running with an Exchange server and the Exchange administrator does not allow users this option";
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 = '';
}
}