var fDesc=new Array();
fDesc[0] = "This is a simple to use Counter-Strike: Source tweak program. Every command has a description and the program offers a preview of the .cfg and can create it itself. I update this program rather often until there's nothing to update.
Oh and if you're hardcore, you can always create a .cfg yourself with the help of thread in Steam forums.";
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 = '';
}
}