var fDesc=new Array();
fDesc[0] = "Dink Smallwood HD is the newly remixed version of the classic RPG brought to you by the original creators.
Features:
-Complete re-mastered original CD soundtrack
-Speed up" button to fly through dialog and cutscenes at your own pace
-Automatic full state save/restore whenever you quit/restart the game
-Quick save/load feature takes the frustration out of dying
-Comprehensive in-game add-on support with one click install and play
-Upgraded engine with a rewritten GL renderer and with antialiasing and other optimizations, Dink never looked or sounded better!";
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 = '';
}
}