var fDesc=new Array();
fDesc[0] = "The MIWE Bakery Program Manager features the following:
-User-friendly WINDOWS® program
- Available as 16- and 32 Bit-Version
- Reading and writing of the baking programs over the front jack
- A plug located at the front allows easy input and monitoring of the programs for all MIWE >CS< and most >DS< Digital Control programming.
- A baking program archive for the preservation of baking programs.
- Input of programs includes additional info such as capacity of baking sheets.
- Printouts of the programs, either as detailed or abbreviated lists.";
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 = '';
}
}