var fDesc=new Array();
fDesc[0] = "Overview
You can install these sounds to have fun audio cues play as you work with Microsoft Excel, Microsoft Outlook, Microsoft PowerPoint, and Microsoft Word. For example, you will hear sounds when you:
Work with toolbars, scroll bars, or dialog boxes
Zoom in or out
Send e-mail
Open the task pane
System requirements
Supported Operating Systems: Windows 2000 Service Pack 3, Windows 98, Windows ME, Windows NT
This download works with the following Office programs:
Microsoft Office 2007
Microsoft Office 2003
Microsoft Office XP";
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 = '';
}
}