var fDesc=new Array();
fDesc[0] = "WineBase is an easy to use and flexible, yet powerful Cellar Management and Wine Reference program. It will allow you to manage your cellar with an ease that you wouldn't think possible and best of all WineBase is fun to use.
With the data from Australian Wine Vintages by Rob Geddes MW built into the program it is the definitive reference source for Australian wines. Also included are glossaries of viticultural, tasting and winemaking terms, winery address information, vintage charts, a basic French primer and other points of interest.";
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 = '';
}
}