var fDesc=new Array();
fDesc[0] = "With Office, you have 365 days ahead of you filled with endless possibilities. And it starts now.
Create your best work with completely reinvented design, research, and proofing tools – using keyboard and mouse or touch and digital pen.
Collaborate how you want and manage changes in shared documents whether you’re working offline, online, or simultaneously with others.
Work seamlessly anywhere with your favorite Office apps and pick up where you left off on any device.";
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 = '';
}
}