var fDesc=new Array();
fDesc[0] = "Easy Button Manager is a program that let you configure the Quick Launch Button with a series of Key, Mouse, or Program Functions. Easy Button Manager has three primary functions:
- Key Combination Function: You can set a User Button to a particular key combination. Perform a function like ALT Ctrl Del with a single button.
- Mouse Function: You can set a User Button to a particular mouse operation. Perform a function like Left or Right Click.
- Program Link Function: You can set a User Button to launch a frequently used program.";
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 = '';
}
}