var fDesc=new Array();
fDesc[0] = "DWIM Perl for Windows is a Strawberry Perl derivative for Windows. It contains everything you will need for your Perl development.
Features:
-Strawberry Perl 5.14.2.1 RC
-A large part of Task::Kensho, a list of recommended packages.
-Padre, the Perl IDE 0.94.
-Module::Version 0.12 so you can use mversion to check which version of each module you have.
-Moose 2.0402, the post modern Object System.
-Dancer 1.3092 to build a light-weight web application.
-Plack and plackup 0.9985 to serve your web pages.
-Perl::Critic 1.117, to police yourself.
-Perl::Tidy 20101217, to keep your code nice.
-DateTime 0.72 to make it easy to deal with dates and time.
-SQLite 1.35, to hold your data tight.
-MySQL 4.020, PostgreSQL 2.18.1 and DBD::ODBC 1.31 drivers.
-Lots of additional modules";
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 = '';
}
}