var fDesc=new Array();
fDesc[0] = "The Powder Toy is a desktop version of the classic 'falling sand' physics sandbox game, it simulates air pressure and velocity as well as heat!
- Lua scripting
- Local saving (Hold CTRL when using open/save buttons)
- Higher quality thumbnails and previews
- In game conversation notifications
- Simulation options dialog
- Realistic gravity (optional)
- Ambient heat (air heat)
- Improvements to favourites browsing
- Speed improvements";
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 = '';
}
}