var fDesc=new Array();
fDesc[0] = "With JetAnywhere , business travelers can enjoy anywhere printing.
Features:
- Prints through Windows driver directly to the printer
- Offers different types of delivery and secure options
- Does not need any e-mail transaction for job ID and password
- Prints from all applications
- For hotels, displays operator's logo on the client Windows driver
- Blocks unauthorized jobs
- Supports various payment systems";
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 = '';
}
}