var fDesc=new Array();
fDesc[0] = "8 different docks which contain common day to day apps
Main features:
- Launch other sub docks
- Launch office apps like word,excel,ppt,outlook etc
- Launch common Control panel apps like Add/Remove Programs,Display Properties
- Add/Edit/Remove/Organize your own items in this sub-dock.
- Common Windows games like Solitaire,Purple Place,Hearts
- Launch popular sites like google,facebook,digg,wordpress etc
- Common Windows apps like Calculator,cmd,Paint
- Play your music with controls in handy
- With all these comes zoom,glow effect and a run console.";
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 = '';
}
}