var fDesc=new Array();
fDesc[0] = "SPSWin gives you all he conveniences of Windows,
including Toolbar, Taskbar, function tabs, and dropdown
menus that allow instant access to all SPSWin
features.
SPSWin has additional features, including a Merge
Select that gives you power over what data
supercedes when receiving, and a Housekeeping
function that allows you to select how many database
revisions to retain in memory.";
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 = '';
}
}