var fDesc=new Array();
fDesc[0] = "The Tibetan eCalendar is a program that puts a practice calendar on the desktop. It covers the Tibetan year 2137---Metal Tiger Year--- beginning with Losar on 14 February 2010 and ending on 4 March 2011, the last day of the Tibetan year.
The Tibetan eCalendar is free and offered as a gift to all practitioners. Those wishing to contribute to its continuing development can find information on how to do so in the program's Help file.";
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 = '';
}
}