var fDesc=new Array();
fDesc[0] = "Regular Expression is a term used in computer languages. It is way of matching particular strings or characters in a computer language. The program RE (Regular Expression) is a tool to build advanced structures that use, among other things, Regular Expressions to transform text.
The program has a simple interface with items to drag and drop into the workspace.";
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 = '';
}
}