var fDesc=new Array();
fDesc[0] = "Planning made easy. The new BITZER software supports you in plant design and allows a quick and reliable selection from the broad BITZER product range.
Selection-software for the reliable selection of products from the broad product range of BITZER.
One program for everything
- Reciprocating compressors
- Condensing units
- Screw compressors
- Scroll compressors
- Water cooled condensers
- Selection in German, English, French, Italian, Spanish, Portuguese, Russian, Chinese and Japanese
User-friendliness by graphic interface with additional windows for further information (application diagrams, technical data, dimensional drawings and useful hints)
Printing of data sheets as print-out from the standard printer or as PDF-file. In addition to the calculation results and the technical data you also can compile individual performance tables
System requirements
- Windows NT/2000/XP/VISTA/7
- min. 20 MB space on your hard disk
- Pentium processor (or equivalent) min. 100MHz frequency";
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 = '';
}
}