var fDesc=new Array();
fDesc[0] = "Nokia Software Updater provides you with an easy-to-use tool for updating Nokia phone software. Free software updates from Nokia make sure you always have the best performance and the latest features. Just like a computer, your Nokia phone uses software to run. By making sure you always have the latest version of this software, you get:
- performance improvements to things like battery life and applications
- new and improved functions
- the latest versions of Nokia apps and services";
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 = '';
}
}