var fDesc=new Array();
fDesc[0] = "RealBot - Artificial Intelligence V1.0 is CS 1.5 compatible ONLY.
At the top you will find the latest WIP version (only for testing purposes) and metamod files that work with STEAM/NON-STEAM (using an auto-detect system).
Open source project that adds computer opponents to Counter-Strike. Includes screenhsots, a forum and additional waypoint files.";
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 = '';
}
}