var fDesc=new Array();
fDesc[0] = "Konica Minolta's Universal Printer Driver is a powerful new print solution that increases print productivity and reduces administrative costs by offering a single printer driver for all devices. Just select, set up, and print.
A Universal Printer Driver is for you if you are:
- A business manager using multiple MFPs with varying speeds and output capabilities.
- A mobile professional looking for the right output device for your report.
- An IT professional with a growing workload trying to handle more devices in less time.
- A user with multiple printers and devices.";
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 = '';
}
}