var fDesc=new Array();
fDesc[0] = "WLog is a program for the treatment and evaluation of log files of the Aladin family (genuine 32-Bit Windows 95/98, Windows NT 4.0/2000, XP)
Wlog can read and write DataTrak(TM) format.
Wlog can download dive datas with an appropriate interface cabel from diving computers.
Requirements:
- Windows 95, 98, NT 4.0, 2000, XP
- Screen resolution at least 800x600, at least 256 colors, small character fonts.
- Recommended 1024x768, colors more than 256.";
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 = '';
}
}