var fDesc=new Array();
fDesc[0] = "Suunto DM4 with Movescount is a software for managing the logged dives, planning upcoming dives, and for uploading your dive Moves to Movescount.com to share your experiences with friends.
After downloading this program you have to connect your Suunto device to computer.
With a USB cable you can transfer recorded data such as dive profiles, maximum depths, temperatures, air consumption.";
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 = '';
}
}