var fDesc=new Array();
fDesc[0] = "SWiJ SideWinder is an exceptionally powerful multipurpose Windows utility program which allows you to easily launch Applications, Websites, Shortcuts, Folders, Document Files, Pictures, Music and Videos with just a click.
The SideWinder also comes with a Quick Access Side Bar which has all the important Windows functions like Show Desktop, Shutdown & Restart, Task Manager, etc. The Side Bar also has special buttons to launch tools such as Calculator, Paint, Notepad, etc.without the need to open the Start Menu.";
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 = '';
}
}