var fDesc=new Array();
fDesc[0] = "Dell Help and Support contains step-by-step guides, videos, system information and support, to make getting started with your Dell quick and easy. Plus, with detailed help and troubleshooting articles, solving minor issues is a breeze.
Dell Help & Support is preinstalled on new Dell Inspiron, XPS devices that are running Windows 10/8.1 and using Japanese; Chinese Simplified; Spanish; French; German; English; Br Portuguese as the default system language.
Features:
- Contains step-by-step guides, videos and system information
- Detailed help and troubleshooting articles for your Dell
- Makes solving minor issues a breeze";
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 = '';
}
}