var fDesc=new Array();
fDesc[0] = "PlugY, The Survival Kit is structured as options that can be enabled or disabled by editing the configuration file. This plugin is localized in English, French, German, Italian, Spanish, Polish.
PlugY, The Survival Kit is a plug-in for Diablo II Lord of Destruction and it offers: infinite storage space in the stash, shared storage space in the stash, enabled the ladder only runewords out of realms. Local World Event and Uber Quest for singleplayer and multiplayer off-realm!";
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 = '';
}
}