var fDesc=new Array();
fDesc[0] = "ANT 4 Pizza Timer counts down the time, until your Pizza, or any other dish, is ready. It plays a soundfile to notify you, in case you don't sit in front of your PC.
You can customize different profiles, so you can easily use ANT 4 Pizza Timer for various dishes.
If you have to heat up the oven, before you insert anything, you can use the "Intermission Feature". When the intermission time is reached, ANT 4 Pizza Timer plays another soundfile and changes it's countdown color from black to green. A red countdown color indicates, that the timer has already passed zero.";
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 = '';
}
}