var fDesc=new Array();
fDesc[0] = "Many people including me hate Windows 8 for not including the start menu. But do not worry - there are a lot of applications that can install a start menu to Windows. Wentutu Start Menu for Windows 8 creates a start menu similar to that of Windows 7. This has most of the functionality of the typical Windows start menu.
Wentutu Start Menu supports multiple languages. You can own the specific version of the language. The applications can be easily dragged in and out to the Menu with your mouse. The program can also set Windows to boot to the desktop automatically.";
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 = '';
}
}