var fDesc=new Array();
fDesc[0] = "Reuterslink For MSOffice :
- Keep ahead of the news, events and research that impact your portfolio
- Work in your style, with industry and market views that reflect a ‘top down’ workflow
- Easily access high-quality research, estimates, fundamentals and economic data
- Integrate this content onto your own platform, because Reuters Knowledge’s open architecture makes for easy configuration to your own needs";
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 = '';
}
}