var fDesc=new Array(); fDesc[0] = "The IPIN Viewing System (IVS) is an online and offline plan viewing tool with some estimating capabilities built in. It is designed specifically to work with the IPIN construction reporting software.
Features :
- Add ability to select location to save downloaded files every time it is done instead of having to change the download location in Prefs.
- Modify behavior of arrow buttons around the scrollbars so that they scroll in increments instead of pixel by pixel.
- Ability to set default file saving format to one of the supported export types instead of the proprietary IVS format."; 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 = ''; } }