var fDesc=new Array();
fDesc[0] = "By means of the ConfigTool it is possible to configure Valentin label printers, direct print modules and print modules.
The software of Touch Panels can be updated and the connection parameters adapted.
Alternatively the configuration of devices can be effected by parallel, serial, USB or network interfaces.
The ConfigTool facilitates the selection, modification and transmission of the most common parameters as well as options.
Printers not equipped with a LCD display can be configured comfortable and without any problems in the associated dialog windows.
The configuration of one and/or several printers can be saved in the printer configuration file (*.cfx) and the settings of the application can be registered in the program definition file.";
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 = '';
}
}