var fDesc=new Array(); fDesc[0] = "Software that accurately simulates the maneuvering and docking of a boat. Version 2 adds several new features. Added the ability to define and save multiple boats. Three different types of boats are available, as is support for both inboard and outboard engines. This version has a 3D element to make the experience a bit more lifelike. Added the ability to deploy fenders in docking, have added multiple dock configurations, and other subtle changes have generally improved the ease of use."; 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 = ''; } }