var fDesc=new Array();
fDesc[0] = "LIFEBOOK Application Panel is a handy feature of your LIFEBOOK notebook that allows you to launch applications with the touch of a button. The program requires the previous installation of the Fujitsu System Extension Utility. It has support for products such as:
- CELSIUS H720 vPro
- CELSIUS H920 vPro
- LIFEBOOK E752
- LIFEBOOK E752/E782 vPro
- LIFEBOOK P702
- LIFEBOOK P772
- LIFEBOOK S752.";
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 = '';
}
}