var fDesc=new Array();
fDesc[0] = "Microsoft has released an update for Microsoft SkyDrive Pro 32-Bit Edition. This update provides the latest fixes to Microsoft SkyDrive Pro 32-Bit Edition. Additionally, this update contains stability and performance improvements.
Assume that you synchronize an Office document between a local disk and SkyDrive Pro. You try to open the local document in an Office desktop application over a slow Internet connection. In this situation, the document takes longer than expected to open.";
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 = '';
}
}