var fDesc=new Array();
fDesc[0] = "It is a Areal start button and start menu for Windows 8. 8StartButton is not just a start screen button, it is a full start button with a full new designed start menu.
Main Features:
- Highly customizable: Customize and personalize your start button with in-build images, or use your own button pictures.
- Fully configurable: Change the in-build start menu buttons' appearance, images, and commands, change tile order, add additional tiles, etc.
- Full control: Full control over Windows 8 with the included quick access menus to shutdown and restart,";
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 = '';
}
}