var fDesc=new Array();
fDesc[0] = "RxWings v2.3 has been released 17 Dec '08.
The main purpose of this release is to integrate the current program in a single distribution package as a selfextracting file that makes it very easily to install directly the latest version.
At the same time some new features are added in the longterm timer programming area, a 24 hr cyclic timer and a timer controlled by a file with date & timestamps
To download the new -all in one- Manual (~2.5 MB) or Setup file (~7.8 MB) click in the download links in the left lower part.";
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 = '';
}
}