var fDesc=new Array();
fDesc[0] = "An easy-to-follow guide for .NET architects building applications with Design Patterns. The C# edition comes with 100% pure C# source code.
Features:
- 69 Comprehensive .NET 4.0 Design Pattern Projects
- 23 Valuable UML Diagrams in Visio format
- Printable PDF document with all GoF Patterns
- 3-Tier Pattern Architecture
- E-commerce ASP.NET MVC Pattern Application with Areas, Testing, DI, Moq
- E-commerce ASP.NET Web Forms Pattern Application with Routing, EF";
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 = '';
}
}