var fDesc=new Array(); fDesc[0] = "When a game is being developed, typically only 1 language is used by the development team. In some cases, the developers will also build translations for some other major languages, however this is not common for several reasons... It complicates the development of the game It costs time and money to do the translation, both of which are limited Often the costs outway the benefit, as games in alternate languages don't sell well There are several groups on the internet that address this issue by providing translations for games. However, it can often be hindered because the languages are hard to find, or use a proprietary file format."; 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 = ''; } }