var fDesc=new Array();
fDesc[0] = "Learn how to work with Microsoft Office 2007 Word, Excel or PowerPoint in unique Edu-learning software, where you learn directly in ACTUAL Word, Excel or PowerPoint.
Features
Learning in ACTUAL Word, Excel and PowerPoint
Available in English for Microsoft Office 2007 EN
Learning in 3 modules: Word, Excel, PowerPoint
Contains 44 lessons
and more than 900 tasks
Edu-learning is Certified for Windows Vista";
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 = '';
}
}