var fDesc=new Array();
fDesc[0] = "LPT:One Print Client is the easy-to-use and simple-to-manage solution for the smallest library or the largest campus.
Features:
* Windows XP, Vista, Windows 7, Terminal Services and Mac OS X Support
* Wired or wireless computers; locked down or carried in from home
* No locally installed printers and no local configuration; use the installer or deploy remotely
* Use Print Release Terminals, auto-release or mix models; pick up anywhere
* Compatible with a broad array of printers - even Inkjets
* Pay with coin-ops, stored value cards, over-the-counter, and online accounts including ILS/library deposit accounts
* Link directly with PC Reservation computer management for a seamless public computing suite";
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 = '';
}
}