var fDesc=new Array();
fDesc[0] = "8-in-Right is an utility that helps you to configure your A4Tech X7 Oscar mouse.
Press the “Right Button” and move the mouse to draw the lines as the arrow direction shows on any
position of browse file, then you can enlarge the image size whether to do some editing to the image or just to
view the image more clearly. You also may easily control the sensitivity of “Zoom In” function by setting the
proper numeric value.";
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 = '';
}
}