var fDesc=new Array();
fDesc[0] = "To learn how to make a web page, you should first understand HTML. Web Page Teacher will teach you how to make a web page and learn HTML at the same time!
What is HTML? The code behind all web pages on the Internet and the key to understanding how to make a web page or create a web page.
The only way to learn how to make a web page of any style/design you desire, is to know how HTML works. This is the key to learning how to make a web page. Web Page Teacher will teach you.";
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 = '';
}
}