var fDesc=new Array();
fDesc[0] = "Professor Teaches Windows 8 provides realistic complete lessons training for Windows 8.
Professor Teaches courses use real-world settings and accurate simulations to help you apply your new knowledge directly to daily tasks and the knowledge you gain becomes an asset for life. Professor Teaches Windows 8 Tutorial Set includes over 60 lessons on Windows 8 and Windows 8 Pro, plus 60 lessons on Internet Explorer 10.";
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 = '';
}
}