var fDesc=new Array();
fDesc[0] = "WAGO's ProServe software will assist you in each process from concept to schematic to product realization.
ProServe puts itself into your task description, saves you time and takes a load off your shoulders, giving you professional solutions thought through to the last detail - for fault-free applications.
It is a professional tool designed to optimize sourcing WAGO products:
Interactive access to over 13,000 items.
Integrate information from data banks
14 language options are available on the CD-ROM
Search by item group and item numbers
Search by keywords and technical data
Data transfer to an order with just a mouse click";
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 = '';
}
}