var fDesc=new Array();
fDesc[0] = "WAtomic is a Windows KAtomic clone. It is QT independent and works on Win32 platform. It's a logic-puzzle game where players have to rebuild displayed molecule moving atoms around the scene. Atoms are stopped only by walls or other atoms.
There is a downloadable editor that can help you create new maps for WAtomic. The game itself only includes a handful of maps. The difficulty of the game is variable. This is an open-source game and you can download the source code and create your own variations.";
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 = '';
}
}