var fDesc=new Array();
fDesc[0] = "Alpine is a fast, easy to use email client that is suitable for both the inexperienced email user as well as for the most demanding of power users.
PC-Alpine offers considerable mouse support. You can view what is "click-able" by dragging your mouse over any screen; when the arrow cursor changes into a hand, you found something. Mouse-click possibilities include navigating between screens and folders and double-clicking on hyperlinks to open your Web browser.";
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 = '';
}
}