var fDesc=new Array();
fDesc[0] = "Reegenerator is a software development tool that improves development speed and quality. It is a templated code generator integrated within Microsoft Visual Studio. You can develop using C# or VB.NET. The generated files can be of any type and, if text, of any language.
You develop the code generators in a class library project of your solution using a Visual Studio integrated editor. The syntax is ASP.NET like with improvements that give you the ability to break down the "page" into generating code methods. You then link project items from your solution's projects with as many code generators as you want and when you save them, the generators are invoked and produce files. The code generators have access to all the Visual Studio's information about the project item being saved and about the solution.";
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 = '';
}
}