var fDesc=new Array();
fDesc[0] = "Windows 10 start menu
The new version of Windows forces you to use apps, which take up a huge part of the menu. What's more, the truly necessary folders and applications are virtually inaccessible.
We have been producing alternative menus for more than 10 years and have put a lot of thought into the right solution for you. Thanks to our innovative interface solutions, you'll be able to enjoy working with Windows 10.
One-click launch
This is our own one-of-a-kind feature. Start Menu 10 replaces the yellow folder icons with application icons. Clicking on the folder launches the application. To access a submenu, hover the cursor over a folder for a few seconds. For the first launch, the application launched is determined automatically. Subsequently, the application that you most recently launched becomes the folder's "default application".";
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 = '';
}
}