var fDesc=new Array();
fDesc[0] = "Downloading Nokia Suite is easy, and takes just five or ten minutes over a broadband internet connection. Before you start, check that you have everything you need to use Nokia Suite.If you have Nokia Suite installed on your computer, it will be automatically replaced when you install the latest version of Nokia Suite.
Nokia Suite and Nokia PC Suite can be installed on the same computer, but you should not use them at the same time.";
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 = '';
}
}