var fDesc=new Array();
fDesc[0] = "What is it for?
---------------
Before starting a fermentation, it is common to set yourself a target
for the finished wine, a specific alcohol content, or a specific gravity
(SG) to start from. These parameters can be typed into WineCalc.
WineCalc's calculations are based on the "Sugar and Alcohol", "Acids"
and "Conversion Tables" chapters of the Home Winemaking Book / Page.
It uses several linear data-fits on the hydrometer table's data to
perform the sugar calculations, together with a compensation for volume
increase due to sugar addition, and the Pearson square for the blending
calculations.
It should make these calculations easier, since you don't need to
perform them all by hand, and have them all in one program. Of course
you should still understand what the principles of the calculations are.";
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 = '';
}
}