var fDesc=new Array();
fDesc[0] = "Provides an environment to create MIWE programs based on profiles.
Supports Touch Control MIWE TC, the fixed program control system MIWE FP, and computer control CS.
Main features:
-Fewer errors when creating baking programs
-Central storage and administration of baking programs from several branch outlets on
one Windows-PC/laptop
-Simpler roll-out of new baking programs on several spatially separated baking ovens
-Baking programs can be read and written out via the front connector socket
-Simpler creation of baking programs for baking ovens with a fixed program control system in the familiar -Windows environment
-Creation and administration of baking programs from the comfort of your home
-Transferral of baking programs via USB interface
-Conversion of baking programs between different control system types (on a Windows-PC/laptop)";
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 = '';
}
}