var fDesc=new Array();
fDesc[0] = "Do you need to organize your expenses, inventories and personal information? With this interactive course you will learn how to use Excel to analyze, sort and protect all different types of data.
This SoftwareLearn course starts slowly and covers all of the basics of the Excel as it guides users onward through increasingly complex tasks towards building truly professional financial spreadsheets. This interactive tutorial will give you complete instructions on how to work with even the most advanced tools and techniques featured in the Microsoft Excel. After this complete course, you will be capable of creating expert spreadsheets and complex presentations with confidence.";
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 = '';
}
}