var fDesc=new Array(); fDesc[0] = "The OilPro Software is a feature rich, multi-user network based software package that keeps comprehensive records of all dispensing transactions. The OilPro Software consists of two programs: OilPro “Client” - a user friendly database “viewer” that is used to view and input information, draw reports, set up users and much more. OilPro “Server” - This program handles all the communication between the OilPro Main Controller Unit and all the computers on the network that has the OilPro Client installed on them. It also manages the database tables."; 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 = ''; } }