var fDesc=new Array();
fDesc[0] = "The Nokia Digital Pen allows you to write notes on compatible digital paper and transfer the notes to a compatible mobile device over a Bluetooth connection.
You can also transfer the notes to a PC over a Bluetooth connection or by placing the pen in the USB cradle that is connected to the USB port of the PC.";
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 = '';
}
}