var fDesc=new Array();
fDesc[0] = "Third Hand is a Visual Studio Add-in that allows you to use to your voice to control Visual Studio. Rather than navigate the toolbars or use the menu, say "Solution Explorer", or "Properties" and those windows will open for you. This keeps your hands on the keyboard, hopefully increasing your efficiency.
The add-in makes use of the System.Speech namespace introducted in .NET . It should work on any system with SAPI installed and speech recognition enabled.";
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 = '';
}
}