var fDesc=new Array();
fDesc[0] = "WisBar Advance 3 expands upon the successful task management features found in the WisBar Advance 2. Included in WisBar Advance 3 is the ability to customize your running applications to a degree not seen in other programs. Utilizing a smaller memory footprint from previous versions, WisBar Advance 3 keeps your device running as fast as possible, leaving more memory available for any application you may use.
WisBar Advance 3 also brings new life to your PocketPC with the ability to change the appearance of your system to a degree not matched in other software. It is compatible with WM2003, WM2003SE, WM5 and WM6 touchscreen devices.";
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 = '';
}
}