var fDesc=new Array(); fDesc[0] = "This release is Alpha 7 compatible and has also fixed the issue with the points display. An apparent change in the code before I got the files to fix a crash when computing total points resulted in that method always returning zero. I KNEW I was nowhere near it before . The initial greeting now is appended with so that automated shoppers can determine what version of the Trade It! they are communicating with. The number before the dot is the shopper command version, and is a key to what shopping commands and command syntax are available while shopping. If a shopping bot does not see "<v1" in it's string, it could default to using the comma separator, if it does see the string, it should use the colon separator. The number after the dot is the version of seller commands available. These numbers will only change if commands are added or modified, so should normally not change between versions."; 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 = ''; } }