var fDesc=new Array();
fDesc[0] = "With Samsung Magic Doctor you can diagnose system problems with a single click or by selecting the diagnostic items. You can also use Samsung Magic Doctor to restore your computer to an earlier time.
Features:
- Diagnose the system to determine the cause of common PC issues.
- Restore the system using either a basic or complete restore.
- Check system information.";
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 = '';
}
}